62,269
社区成员
发帖
与我相关
我的任务
分享
string mbPath = Server.MapPath("moBang/") + "Temp.htm";
Encoding code = Encoding.GetEncoding("gb2312");
StreamReader sr = null;
StreamWriter sw = null;
string str = null;
try
{
sr = new StreamReader(mbPath, code);
str = sr.ReadToEnd();
}
catch (Exception ex)
{
throw ex;
}
finally
{
sr.Close();
}