永发信息网

C#帮我看下下面代码那里有错,为什么不能正常获得网络时间!!!!

答案:1  悬赏:30  手机版
解决时间 2021-04-14 22:39

是不是还欠缺什么引用 ?

using System;
using System.Collections.Generic;
using System.Text;
using System.Xml;
using System.IO;
using System.Windows.Forms;
using System.Runtime.InteropServices;

public static DateTime DataStandardTime() //获得网络时间
{
//只使用的时间服务器的IP地址,未使用域名
string[,] 时间服务器 = new string[14, 2];
int[] 搜索顺序 = new int[] { 3, 2, 4, 8, 9, 6, 11, 5, 10, 0, 1, 7, 12 };
时间服务器[0, 0] = "time-a.nist.gov";
时间服务器[0, 1] = "129.6.15.28";
时间服务器[1, 0] = "time-b.nist.gov";
时间服务器[1, 1] = "129.6.15.29";
时间服务器[2, 0] = "time-a.timefreq.bldrdoc.gov";
时间服务器[2, 1] = "132.163.4.101";
时间服务器[3, 0] = "time-b.timefreq.bldrdoc.gov";
时间服务器[3, 1] = "132.163.4.102";
时间服务器[4, 0] = "time-c.timefreq.bldrdoc.gov";
时间服务器[4, 1] = "132.163.4.103";
时间服务器[5, 0] = "utcnist.colorado.edu";
时间服务器[5, 1] = "128.138.140.44";
时间服务器[6, 0] = "time.nist.gov";
时间服务器[6, 1] = "192.43.244.18";
时间服务器[7, 0] = "time-nw.nist.gov";
时间服务器[7, 1] = "131.107.1.10";
时间服务器[8, 0] = "nist1.symmetricom.com";
时间服务器[8, 1] = "69.25.96.13";
时间服务器[9, 0] = "nist1-dc.glassey.com";
时间服务器[9, 1] = "216.200.93.8";
时间服务器[10, 0] = "nist1-ny.glassey.com";
时间服务器[10, 1] = "208.184.49.9";
时间服务器[11, 0] = "nist1-sj.glassey.com";
时间服务器[11, 1] = "207.126.98.204";
时间服务器[12, 0] = "nist1.aol-ca.truetime.com";
时间服务器[12, 1] = "207.200.81.113";
时间服务器[13, 0] = "nist1.aol-va.truetime.com";
时间服务器[13, 1] = "64.236.96.53";
int portNum = 13;
string hostName;
byte[] bytes = new byte[1024];
int bytesRead = 0;
System.Net.Sockets.TcpClient client = new System.Net.Sockets.TcpClient();
for (int i = 0; i < 13; i++)
{
hostName = 时间服务器[搜索顺序[i], 1];
try
{
client.Connect(hostName, portNum);
System.Net.Sockets.NetworkStream ns = client.GetStream();
bytesRead = ns.Read(bytes, 0, bytes.Length);
client.Close();
break;
}
catch (System.Exception)
{
}
}
char[] sp = new char[1];
sp[0] = ' ';
System.DateTime dt = new DateTime();
string str1;
str1 = System.Text.Encoding.ASCII.GetString(bytes, 0, bytesRead);

try
{
string[] s;
s = str1.Split(sp);
dt = System.DateTime.Parse(s[1] + " " + s[2]);//得到标准时间
dt = dt.AddHours(8);//得到北京时间*/
}
catch (Exception)
{

DialogResult mess= MessageBox.Show("请确认您的网络连接能正常使用","错误",MessageBoxButtons.RetryCancel,MessageBoxIcon.Stop);
if (mess == DialogResult.Retry)
{
Application.Restart();
}
else if(mess==DialogResult.Cancel){
Application.Exit();
}

}
return dt;

}

最佳答案

代码是正确的!


using System;
using System.Collections.Generic;
using System.Text;
using System.Xml;
using System.IO;
using System.Windows.Forms;
using System.Runtime.InteropServices;


namespace test
{
class gettime
{
public static DateTime DataStandardTime() //获得网络时间
{
//只使用的时间服务器的IP地址,未使用域名
string[,] 时间服务器 = new string[14, 2];
int[] 搜索顺序 = new int[] { 3, 2, 4, 8, 9, 6, 11, 5, 10, 0, 1, 7, 12 };
时间服务器[0, 0] = "time-a.nist.gov";
时间服务器[0, 1] = "129.6.15.28";
时间服务器[1, 0] = "time-b.nist.gov";
时间服务器[1, 1] = "129.6.15.29";
时间服务器[2, 0] = "time-a.timefreq.bldrdoc.gov";
时间服务器[2, 1] = "132.163.4.101";
时间服务器[3, 0] = "time-b.timefreq.bldrdoc.gov";
时间服务器[3, 1] = "132.163.4.102";
时间服务器[4, 0] = "time-c.timefreq.bldrdoc.gov";
时间服务器[4, 1] = "132.163.4.103";
时间服务器[5, 0] = "utcnist.colorado.edu";
时间服务器[5, 1] = "128.138.140.44";
时间服务器[6, 0] = "time.nist.gov";
时间服务器[6, 1] = "192.43.244.18";
时间服务器[7, 0] = "time-nw.nist.gov";
时间服务器[7, 1] = "131.107.1.10";
时间服务器[8, 0] = "nist1.symmetricom.com";
时间服务器[8, 1] = "69.25.96.13";
时间服务器[9, 0] = "nist1-dc.glassey.com";
时间服务器[9, 1] = "216.200.93.8";
时间服务器[10, 0] = "nist1-ny.glassey.com";
时间服务器[10, 1] = "208.184.49.9";
时间服务器[11, 0] = "nist1-sj.glassey.com";
时间服务器[11, 1] = "207.126.98.204";
时间服务器[12, 0] = "nist1.aol-ca.truetime.com";
时间服务器[12, 1] = "207.200.81.113";
时间服务器[13, 0] = "nist1.aol-va.truetime.com";
时间服务器[13, 1] = "64.236.96.53";
int portNum = 13;
string hostName;
byte[] bytes = new byte[1024];
int bytesRead = 0;
System.Net.Sockets.TcpClient client = new System.Net.Sockets.TcpClient();
for (int i = 0; i < 13; i++)
{
hostName = 时间服务器[搜索顺序[i], 1];
try
{
client.Connect(hostName, portNum);
System.Net.Sockets.NetworkStream ns = client.GetStream();
bytesRead = ns.Read(bytes, 0, bytes.Length);
client.Close();
break;
}
catch (System.Exception)
{
}
}
char[] sp = new char[1];
sp[0] = ' ';
System.DateTime dt = new DateTime();
string str1;
str1 = System.Text.Encoding.ASCII.GetString(bytes, 0, bytesRead);


try
{
string[] s;
s = str1.Split(sp);
dt = System.DateTime.Parse(s[1] + " " + s[2]);//得到标准时间
dt = dt.AddHours(8);//得到北京时间*/
}
catch (Exception)
{


DialogResult mess = MessageBox.Show("请确认您的网络连接能正常使用", "错误", MessageBoxButtons.RetryCancel, MessageBoxIcon.Stop);
if (mess == DialogResult.Retry)
{
Application.Restart();
}
else if (mess == DialogResult.Cancel)
{
Application.Exit();
}


}
return dt;


}
}


}


前台取


textBox4.Text = gettime.DataStandardTime().ToString();

我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
请问我头发本来是个波波头现在长长拉不好看拉
单选题下列对加粗词语解释不正确的一项是A.这
如何获得excel表格的行数
有一首歌中的一句歌词是Belive the very best
一个三角形的两个内角是35°和110°,另一个
溪语休闲吧地址有知道的么?有点事想过去
我家有一个祖传的铜制的专门用来提鞋的东西,
多普达830D那款QQ最好用?
关于安全的家庭标语,关于防火防盗的标语有哪
含硼的微肥有利于植物什么作用
按剑三的配置标准推荐几款电脑
翻译题(请高手帮忙)
元素周期表是学习和研究化学的重要工具,它的
S20/S4(路口)地址有知道的么?有点事想过去
双子座的爱情是什么样的
推荐资讯
闪游浏览器好用吗!还是其他~~~~~~·
佳慧超市(三河店)这个地址在什么地方,我要处
南充三名酒业有限公司地址在哪,我要去那里办
完形填空SummeristhebesttimeontheIslando
刘若英《我很好》开头说的?
我和男朋友总吵架,一开始他还哄我,时间长了
八寸圆形相当于几个四寸心形
三国的图标能熄灭吗?
买了新房子,如何挑选家居呢,7大家居选择技
苹果除了拿来吃,还有没有什么别的办法?
在电脑上可以玩社区吗,
金刚力士最高的防御有多少
正方形一边上任一点到这个正方形两条对角线的
阴历怎么看 ?