由于ServerIP老是变来变去,所以,要在本地进行配置。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了由于ServerIP老是变来变去,所以,要在本地进行配置。相关的知识,希望对你有一定的参考价值。

1.

技术分享

2.

技术分享

3.

private void readConfig()
{
string cfgpath = System.IO.Path.Combine(Environment.CurrentDirectory + "\\\\u3d", "config.txt");
//读取editConfig里面的IP
System.IO.FileInfo fi = new System.IO.FileInfo(cfgpath);
long len = fi.Length;

System.IO.FileStream fs = new System.IO.FileStream(cfgpath, System.IO.FileMode.Open);
byte[] buffer = new byte[len];
fs.Read(buffer, 0, (int)len);//把文件流fs写入到缓冲区buffer中
fs.Close();
string str = Encoding.UTF8.GetString(buffer);//unicode是乱码,utf是正常字符串
UserData.serverIP = str;
}












以上是关于由于ServerIP老是变来变去,所以,要在本地进行配置。的主要内容,如果未能解决你的问题,请参考以下文章

virtualbox 虚拟机中,能不能固定系统的分辨率?

POJ3468 splay

Drools 速成教程(上)

javaSE面向对象初级01

字符编码进化论

linux IP动态变动之后 , 需要做的杂项操作