转载C#.NET WebApi返回各种类型(图片/json数据/字符串),.net图片转二进制流或byte

Posted 反骨仔

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了转载C#.NET WebApi返回各种类型(图片/json数据/字符串),.net图片转二进制流或byte相关的知识,希望对你有一定的参考价值。

 

C#.NET WebApi返回各种类型(图片/json数据/字符串),.net图片转二进制流或byte

转载:http://www.itdos.com/Mvc/20150302/0741255.html

using System.IO;  
/// <summary>  
/// WebApi返回图片  
/// </summary>  
public HttpResponseMessage GetQrCode()  
{  
    var imgPath = @"D:\ITdosCom\Images\itdos.jpg";  
    //从图片中读取byte  
    var imgByte = File.ReadAllBytes(imgPath);  
    //从图片中读取流  
    var imgStream = new MemoryStream(File.ReadAllBytes(imgPath));  
    var resp = new HttpResponseMessage(HttpStatusCode.OK)  
    {  
        Content = new ByteArrayContent(imgByte)  
        //或者  
        //Content = new StreamContent(stream)  
    };  
    resp.Content.Headers.ContentType = new MediaTypeHeaderValue("image/jpg");  
    return resp;  
}  
/// <summary>  
/// WebApi返回json数据  
/// </summary>  
public HttpResponseMessage GetQrCode()  
{  
    var jsonStr = "{\"IsSuccess\":true,\"Data\":\"www.itdos.com\"}";  
    var result = new HttpResponseMessage(HttpStatusCode.OK)  
                    {  
                        Content = new StringContent(jsonStr, Encoding.UTF8, "text/json")  
                    };  
    return result;  
}  
/// <summary>  
/// WebApi返回字符串  
/// </summary>  
public HttpResponseMessage GetQrCode()  
{  
    var str = "IT大师www.itdos.com";  
    var result = new HttpResponseMessage(HttpStatusCode.OK)  
                    {  
                        Content = new StringContent(str, Encoding.UTF8, "text/plain")  
                    };  
    return result;  
}  

 

以上是关于转载C#.NET WebApi返回各种类型(图片/json数据/字符串),.net图片转二进制流或byte的主要内容,如果未能解决你的问题,请参考以下文章

webapi的返回类型,webapi返回图片

.net webapi 返回类型

Asp.Net WebAPI配置接口返回数据类型为Json格式

Asp.Net WebAPI配置接口返回数据类型为Json格式

Asp.Net Core WebAPI+PostgreSQL部署在Docker中

.NET Core 处理 WebAPI JSON 返回烦人的null为空