C#HttpPostedFile如何转化成2进制
C#用的是ashx文件if(context.Request.Files.Count>0){context.Response.ContentType="image/jpeg...
C#用的是ashx文件
if (context.Request.Files.Count > 0)
{
context.Response.ContentType = "image/jpeg";
HttpFileCollection files =context.Request.Files;
HttpPostedFile img=files.Get(0);
//这里获得的图片我想转成2进制,然后存到数据库
context.Response.OutputStream.Write(二进制);.//这里我想把刚才转的二进制返回客服端,然后在客户端吧二进制转化为图片......看看能不能实现,我客户端是用安卓开发的.
return;
} 展开
if (context.Request.Files.Count > 0)
{
context.Response.ContentType = "image/jpeg";
HttpFileCollection files =context.Request.Files;
HttpPostedFile img=files.Get(0);
//这里获得的图片我想转成2进制,然后存到数据库
context.Response.OutputStream.Write(二进制);.//这里我想把刚才转的二进制返回客服端,然后在客户端吧二进制转化为图片......看看能不能实现,我客户端是用安卓开发的.
return;
} 展开
2个回答
展开全部
一般情况,显示非二进制的图片(存放在磁盘上的图片文件),直接用图片控件轻易实现。
<img alt="" src="xxx.jpg" />
<asp:Image ID="Image1" runat="server" ImageUrl="xxx.jpg" />
由于程序要求,需要把图片文件转为数据流(二进制),再进行显示。因此想起使用Generic Handler(ashx)来处理。
可以参考下面代码:
<%@ WebHandler Language="C#" Class="ViewImage" %>
using System;
using System.Data;
using System.Drawing;
using System.IO;
using System.Web;
using System.Web.UI.WebControls;
public class ViewImage : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
//接收图片路径
string parameter = context.Request.QueryString["file"];
//使用UrlDecode解编码
string path = context.Server.MapPath(HttpUtility.UrlDecode(parameter));
//转为字节
byte[] datas = System.IO.File.ReadAllBytes(path);
//输出数据流
context.Response.OutputStream.Write(datas, 0, datas.Length);
}
public bool IsReusable
{
get
{
return false;
}
}
}
xxx.NavigateUrl = "~/ViewImage.ashx?file=" + fileFullPath;
<img alt="" src="xxx.jpg" />
<asp:Image ID="Image1" runat="server" ImageUrl="xxx.jpg" />
由于程序要求,需要把图片文件转为数据流(二进制),再进行显示。因此想起使用Generic Handler(ashx)来处理。
可以参考下面代码:
<%@ WebHandler Language="C#" Class="ViewImage" %>
using System;
using System.Data;
using System.Drawing;
using System.IO;
using System.Web;
using System.Web.UI.WebControls;
public class ViewImage : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
//接收图片路径
string parameter = context.Request.QueryString["file"];
//使用UrlDecode解编码
string path = context.Server.MapPath(HttpUtility.UrlDecode(parameter));
//转为字节
byte[] datas = System.IO.File.ReadAllBytes(path);
//输出数据流
context.Response.OutputStream.Write(datas, 0, datas.Length);
}
public bool IsReusable
{
get
{
return false;
}
}
}
xxx.NavigateUrl = "~/ViewImage.ashx?file=" + fileFullPath;
展开全部
HttpPostedFile img = files.Get(0);
byte[] bytes = new byte[img.ContentLength];
using (BinaryReader reader = new BinaryReader(img.InputStream, Encoding.UTF8))
{
bytes = reader.ReadBytes(0)
}
更多追问追答
追问
追答
你现在遇到的问题是,安卓接收的问题?
很抱歉啊,安卓我不是很清楚。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询