码迷,mamicode.com
首页 > Windows程序 > 详细

C# 其他的Url 文件的路径转化为二进制流

时间:2018-10-08 16:01:28      阅读:936      评论:0      收藏:0      [点我收藏+]

标签:ESS   string   app   length   ring   cat   保存   文件流   oba   

 

//将虚拟路径转化为文件的路径然后最后转化为文件流

public ActionResult SaveImage(string path)
{
var url =System.Web.HttpContext.Current.Request.PhysicalApplicationPath + path;

FileStream fs = new FileStream(url, FileMode.Open, FileAccess.Read); //将图片以文件流的形式进行保存
BinaryReader br = new BinaryReader(fs);
byte[] imgBytesIn = br.ReadBytes((int)fs.Length); //将流读入到字节数组中
Encoding myEncoding = Encoding.GetEncoding("utf-8");
string stImageByte = Convert.ToBase64String(imgBytesIn);

return Json(stImageByte);
}

 

C# 其他的Url 文件的路径转化为二进制流

标签:ESS   string   app   length   ring   cat   保存   文件流   oba   

原文地址:https://www.cnblogs.com/LowKeyCXY/p/9754626.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!