首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Windows Mobile >

WM6.0记住小弟我C#程序

2012-04-08 
WM6.0记住我C#程序第一次打开程序输入用户名和密码,以后打开程序就自动登录(如电脑上网时网页账号自动登录

WM6.0记住我C#程序
第一次打开程序输入用户名和密码,以后打开程序就自动登录(如电脑上网时网页账号自动登录)
求高手帮忙!


[解决办法]
string pathExe = Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase);//exe的地址
string pathFile=pathExe+@"\fileName.txt"; //保存的地址


//读取
StreamReader objReader = new StreamReader(pathFile, Encoding.GetEncoding("UTF-8"));
string strContent = objReader.ReadToEnd(); //读出的字符串
objReader.Close();


//写入
string strWrite="abc"; //要写入的字符串
 byte[] bstr = Encoding.UTF8.GetBytes(strWrite);
FileStream fp = new FileStream(Path, FileMode.Create);
fp.Write(bstr, 0, bstr.Length);
fp.Close();

热点排行