在網上尋找的方法,可以實現把資料庫中的二進位數據轉換成文件,也可以把本地的文件轉成二進位的數據。二進位的圖片數據可以用response對象直接輸出給瀏覽器,比較方便~ 話不多說,代碼送上! /// /// 文件轉為 二進位/// /// 文件路徑/// public static byte[] Fi ...
在網上尋找的方法,可以實現把資料庫中的二進位數據轉換成文件,也可以把本地的文件轉成二進位的數據。二進位的圖片數據可以用response對象直接輸出給瀏覽器,比較方便~ 話不多說,代碼送上!
///
/// 文件轉為 二進位
///
/// 文件路徑
///
public static byte[] File2Bytes(string path)
{
if (!System.IO.File.Exists(path))
{
return new byte[0];
}
FileInfo fi = new FileInfo(path);
byte[] buff = new byte[fi.Length];
FileStream fs = fi.OpenRead();
fs.Read(buff, 0, Convert.ToInt32(fs.Length));
fs.Close();
return buff;
}
///
/// 將byte數組轉換為文件並保存到指定地址
///
/// byte數組
/// 保存地址
public static void Bytes2File(byte[] buff, string savepath)
{
if (System.IO.File.Exists(savepath))
{
System.IO.File.Delete(savepath);
}
FileStream fs = new FileStream(savepath, FileMode.CreateNew);
BinaryWriter bw = new BinaryWriter(fs);
bw.Write(buff, 0, buff.Length);
bw.Close();
fs.Close();
}