摘要: using System.IO;using System.Reflection;using System.Xml; FileStream refs = new FileStream("url.xls", FileMode.Open, FileAccess.Read); byte[] infbytes = new byte[(int)refs.Length]; refs.Read(infbytes, 0, infbytes.Length); refs.Close();//将xls文件转换为byte 字节 url.xls读取路径FileStream Wr... 阅读全文
posted @ 2013-12-23 17:39 注定likeyou 阅读(394) 评论(0) 推荐(0) 编辑