2013年7月16日
摘要: 将文件转换为二进制public byte[] getContent(string path) { System.IO.FileStream fs = new System.IO.FileStream(@path, System.IO.FileMode.Open); fs.Position = 0; byte[] content = new byte[fs.Length]; fs.Read(content, 0, (int)fs.Length); f... 阅读全文
posted @ 2013-07-16 08:55 武胜-阿伟 阅读(637) 评论(0) 推荐(0)