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();