摘要:
FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);var contant = new byte[fs.Length];fs.Read(contant, 0, (int)fs.Length);string res = Encoding.Default.GetString(... 阅读全文
posted @ 2009-10-17 09:32 林海 阅读(299) 评论(0) 推荐(0) 编辑