byte[] FileByteArray = new byte[FileLength]; //图象文件临时储存Byte数组 //Stream StreamObject = UpFile.InputStream; //建立数据流对像 /////读取图象文件数据,FileByteArray为数据储存体,0为数据指针位置、FileLnegth为数据长度 //StreamObject.Rea
byte[] filebytearray = new byte[filelength]; //图象文件临时储存byte数组
//stream streamobject = upfile.inputstream; //建立数据流对像
/////读取图象文件数据,FileByteArray为数据储存体,0为数据指针位置、FileLnegth为数据长度
//StreamObject.Read(FileByteArray, 0, FileLength);
//StreamObject = null;
FileStream fs = new FileStream(FullFilePath, FileMode.OpenOrCreate);
BinaryReader rs = new BinaryReader(fs);
FileByteArray = rs.ReadBytes(Convert.ToInt32(fs.Length));
rs.Close();
rs = null;
fs.Close();
fs = null;
theNewFile.CONTENT = FileByteArray;
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号