摘要: 1、读取文件,并转换为字节流 FileStream fs = new FileStream(filename,FileMode.Open,FileAccess.Read); byte[] infbytes = new byte[(int)fs.Length]; fs.Read(infbytes, 0, infbytes.Length); fs.Close(); return infbytes; ... 阅读全文
posted @ 2017-05-25 16:05 渴死的鱼丶 阅读(6174) 评论(0) 推荐(0) 编辑