摘要: public int SavePhoto(string photourl) { FileStream fs = new FileStream(photourl, FileMode.Open, FileAccess.Read);//创建FileStream对象,用于向BinaryReader写入字节数据流 BinaryReader br = new BinaryReader(fs);//创建BinaryReader对象,用于写入下面的byte数组 byte[] photo = br.ReadBytes((int)fs.Length); //新建byte数组,写入br中的数据 br.Clo... 阅读全文
posted @ 2012-06-28 16:06 doubledu 阅读(306) 评论(0) 推荐(0) 编辑