C#怎么从http上返回JSON数据并读取?

如题,用C#从某个Http上返回JSON数据,然后用一串数组存储其中每一条的ID、Size、Filter、URL属性,并分行打印
大概思路是:1.根据某个地址获取到JSON;2.将此JSON解析;3.将其中的ID、Size、Filter、URL存到某个数组中(JSON中已知每一条数据都包含这四个属性)。

Web Service接口方法
   [WebMethod]
public string Project(string paramaters)
{
return paramaters;
}

实现代码
public string Post(string methodName, string jsonParas)
{
string strURL = Url + "/" + methodName;

//创建一个HTTP请求
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(strURL);
//Post请求方式
request.Method = "POST";
//内容类型
request.ContentType = "application/x-www-form-urlencoded";

//设置参数,并进行URL编码
//虽然我们需要传递给服务器端的实际参数是JsonParas(格式:[{\"UserID\":\"0206001\",\"UserName\":\"ceshi\"}]),
//但是需要将该字符串参数构造成键值对的形式(注:"paramaters=[{\"UserID\":\"0206001\",\"UserName\":\"ceshi\"}]"),
//其中键paramaters为WebService接口函数的参数名,值为经过序列化的Json数据字符串
//最后将字符串参数进行Url编码
string paraUrlCoded = System.Web.HttpUtility.UrlEncode("paramaters");
paraUrlCoded += "=" + System.Web.HttpUtility.UrlEncode(jsonParas);

byte[] payload;
//将Json字符串转化为字节
payload = System.Text.Encoding.UTF8.GetBytes(paraUrlCoded);
//设置请求的ContentLength
request.ContentLength = payload.Length;
//发送请求,获得请求流

Stream writer;
try
{
writer = request.GetRequestStream();//获取用于写入请求数据的Stream对象
}
catch (Exception)
{
writer = null;
Console.Write("连接服务器失败!");
}
//将请求参数写入流
writer.Write(payload, 0, payload.Length);
writer.Close();//关闭请求流

String strValue = "";//strValue为http响应所返回的字符流
HttpWebResponse response;
try
{
//获得响应流
response = (HttpWebResponse)request.GetResponse();
}
catch (WebException ex)
{
response = ex.Response as HttpWebResponse;
}

Stream s = response.GetResponseStream();

//服务器端返回的是一个XML格式的字符串,XML的Content才是我们所需要的Json数据
XmlTextReader Reader = new XmlTextReader(s);
Reader.MoveToContent();
strValue = Reader.ReadInnerXml();//取出Content中的Json数据
Reader.Close();
s.Close();

return strValue;//返回Json数据
}
Url的格式样例:"http://59.68.29.106:8087/IFT_Project.asmx"
  methodName参数就是"Project"
  JsonParas就是使用C# JavaScriptSerializer将List<Object>类型的对象序列化之后得到的值,数据格式:[{\"UserID\":\"0206001\",\"UserName\":\"ceshi\"}],Json数据中的中括号代表由着多个对象集合序列化,花括号代表一个对象序列化得到的结果,花括号里面的内容使用键值对的方式展示,多个属性之间用逗号隔开,每个对象也用逗号隔开。
  request.ContentType必须设置值,建议使用"application/x-www-form-urlencoded",设置其他值就很容易报服务器内部异常,使用这种方式服务接口方法返回的是xml格式的字符串
  payload将请求参数转换成二进制来保存,此处一定要将“paramaters”加入其中,不然会报异常缺少参数,paramaters就是服务接口函数的参数名。函数中使用了URL编码,注意在编码的时候只需要将键和值进行编码,不要将中间的=进行编码,不然getResponse的时候会报异常。
  request.ContentLength也是必须设置的值
  在得到响应流之后Stream s = response.GetResponseStream();需要使用Reader来解析响应流,这个地方我使用的是XmlTextReader,因为我服务方法返回的是xml格式的字符串,其中Json数据在xml的Content中。在取出Json数据之后,再进行相应的反序列化即可得到对象。
温馨提示:内容为网友见解,仅供参考
第1个回答  2014-08-26
    我之前做过网络和桌面应用的数据对接,你看看
    /*
1、对象集合
    */
    [DataContract]
    public class Items
    {
        [DataMember]
        public List<ddd> ddd{get;set;}
        public Items()
        {
            ddd = new List<ddd>();
        }

        //把字符串转换为对象
        public static Items FormJson(string json)
        {
            try
            {
                System.Runtime.Serialization.Json.DataContractJsonSerializer a = new System.Runtime.Serialization.Json.DataContractJsonSerializer(typeof(Items));
                using (MemoryStream stream = new MemoryStream(Encoding.Unicode.GetBytes(json)))
                {
                    return (Items)a.ReadObject(stream);
                }
            }
            catch (Exception)
            {

                return null;
            }
        }
    }
 /*
简单的对象
 */
    [DataContract]
    public class ddd
    {
        [DataMember]
        public int cid{get;set;}
        [DataMember]
        public int pid { get; set; }
        [DataMember]
        public int oid { get; set; }
        [DataMember]
        public string view_type { get; set; }
        [DataMember]
        public string status { get; set; }
        [DataMember]
        public string name { get; set; }
        [DataMember]
        public string eng_name { get; set; }
        [DataMember]
        public string ctpl { get; set; }
        [DataMember]
        public string url { get; set; }
    }


/*
2、从HTTP请求中得到数据
*/

HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create("http://www.bursonchurch.net//index.php?Interface-index-keyt-123-act-catelist.html");
            request.Timeout = 5000;
            request.Method = "GET";
            HttpWebResponse response = (HttpWebResponse)request.GetResponse();
            Console.WriteLine("内容类型:"+response.ContentType);
            Console.WriteLine("内容长度:"+response.ContentLength);
            Console.WriteLine("服务器名:"+response.Server);
            Console.WriteLine("资源的URI:"+response.ResponseUri);
            Console.WriteLine("HTTP协议版本:" + response.ProtocolVersion);
            Console.WriteLine("相应状态:"+response.StatusCode);
            Console.WriteLine("相应方法:"+response.Method);
            //头信息
            for (int i = 0; i < response.Headers.Count; ++i)
            {
                Console.WriteLine("\nHeader Name:{0},----------Value:{1}", response.Headers.Keys[i], response.Headers[i]);
            }

            StreamReader sr = new StreamReader(response.GetResponseStream());
            string jsonstr = sr.ReadToEnd();

            //例子  :假设得到的json数据 下面序列化为对象
            string test = "{\"ddd\":[{\"cid\":\"1\",\"pid\":\"0\",\"oid\":\"0\",\"view_type\":\"0\",\"status\":\"1\",\"name\":\"西科推荐\",\"eng_name\":\"\",\"ctpl\":\"\",\"ctitle\":\"\",\"ckeywords\":\"\",\"cdescription\":\"\",\"url\":\"http:\\/\\/www.bursonchurch.net\\/index.php?Cate-index-cid-1.html\"},{\"cid\":\"2\",\"pid\":\"0\",\"oid\":\"2\",\"view_type\":\"0\",\"status\":\"1\",\"name\":\"校园活动\",\"eng_name\":\"\",\"ctpl\":\"\",\"ctitle\":\"\",\"ckeywords\":\"\",\"cdescription\":\"\",\"url\":\"http:\\/\\/www.bursonchurch.net\\/index.php?Cate-index-cid-2.html\"},{\"cid\":\"3\",\"pid\":\"0\",\"oid\":\"2\",\"view_type\":\"0\",\"status\":\"1\",\"name\":\"帅哥\",\"eng_name\":\"\",\"ctpl\":\"\",\"ctitle\":\"\",\"ckeywords\":\"动物世界keword\",\"cdescription\":\"动物世界s\",\"url\":\"http:\\/\\/www.bursonchurch.net\\/index.php?Cate-index-cid-3.html\"},{\"cid\":\"4\",\"pid\":\"0\",\"oid\":\"4\",\"view_type\":\"1\",\"status\":\"1\",\"name\":\"静物\",\"eng_name\":\"\",\"ctpl\":\"\",\"ctitle\":\"\",\"ckeywords\":\"\",\"cdescription\":\"\",\"url\":\"http:\\/\\/www.bursonchurch.net\\/index.php?Cate-index-cid-4.html\"},{\"cid\":\"5\",\"pid\":\"0\",\"oid\":\"5\",\"view_type\":\"1\",\"status\":\"1\",\"name\":\"美女\",\"eng_name\":\"\",\"ctpl\":\"\",\"ctitle\":\"\",\"ckeywords\":\"\",\"cdescription\":\"\",\"url\":\"http:\\/\\/www.bursonchurch.net\\/index.php?Cate-index-cid-5.html\"}]}";
            
            //第一种转
            JavaScriptSerializer j = new JavaScriptSerializer();
            Items ii = new Items();
            ii = j.Deserialize<Items>(jsonstr);


            //第二种也行
            Items it = Items.FormJson(jsonstr);

            response.Close();
            Console.ReadKey();

追问

能加你球球问几个问题吗,谢谢

本回答被提问者和网友采纳

C#怎么从http上返回JSON数据并读取?
问题1:http返回json可以使用webapi技术,自己开发一个webapi接口用于从数据库读取并提供数据。问题2:首先要说一下,http的json如果是前端程序还是用javascript读取比较好。如果是后端的话,只能使用C#读取,使用HttpClient或者HttpWebRequest。HttpClient方式:using (WebClient client = new WebClient()){ clien...

c#中怎么从HTTP中将数据按照jason格式传输,接收并分解
HttpWebResponse response;try { \/\/获得响应流 response = (HttpWebResponse)request.GetResponse();} catch (WebException ex){ response = ex.Response as HttpWebResponse;} Stream s = response.GetResponseStream();\/\/服务器端返回的是一个XML格式的字符串,XML的Content才是我们所需要的Json数据...

怎么从网站上获取json数据 c#代码
string url = "http:\/\/XXX";\/\/网站的网址 string str = string.Empty;\/\/返回的json串数据 try { Uri uri = new Uri(url);WebRequest wr = WebRequest.Create(uri);Stream s = wr.GetResponse().GetResponseStream();StreamReader sr = new StreamReader(s, Encoding.Default);str = sr....

C# 如何接受服务器返回的Json数据?
public static string GetHTTPInfo(string urlPath, string eCode, int millisecond) { string str = null; HttpWebResponse response = null; StreamReader reader = null; try { HttpWebRequest request = (HttpWebRequest)WebRequest.Create(urlPath); request.Timeout = m...

c#和php接收json数据方法
1、获取要接受的json对象。2、准备一个实体类接受json对象。3、第一步的json对象复制到剪切板。4、可以看出RootObject中的user_List[]数组包含User_List类使用使用代码接受对象代码。

C# 怎么读取到ajax异步过来的json的数据呢?
如果你的Ajax提交过去的是get方式,在那个页面就用 Request.QueryString["参数名"]如果是post方式,使用Request.Form[“参数名”] 获取数据 这个页面返回JSON数据:\/\/C# 将对象转换为JSON字符串 \/\/先引用dll System.Web.Extensions using System.Web.Script.Serialization;JavaScriptSerializer ser = new ...

c#如何获得返回json数组中的数组
推荐使用Newtonsoft.Json,这个可以从nuget获取 有三个方案:你将json结果复制,然后编辑→选择性粘贴→将JSON粘贴为类 然后使用 var result = JsonConvert.DeserializeObject<Jobject>(str);\/\/jobject是你粘贴后生成的类型把结果反序列为对象 2.创建匿名对象 var worlds = new {words = ""};var ...

pb 调用http 接口问题,返回值JSON格式,怎么获取返回值
HTTP的 接口说明 EXLIVE开放平台增加动态数据接口,主要以JSON格式返回车辆当前位置数据、轨迹回放数据等等车辆动态信息 (1)信息内容为json格式,必须采用UTF-8编码。(建议提交方式为post方法,可以避免汉字乱码问题)HT请求TP例子:C# code?1 http:\/\/60.195.248.67:89\/gpsonline\/GPSAPI?version=1&...

C# 使用Newtonsoft直接读取Json格式文本(Linq to Json)
运行此代码后,将得到预期的结果:解析过程中,JObject.Parse方法将JSON文本转换为可操作的对象。对于嵌套的属性,无论是对象还是数组,都可通过JObject和JArray继续进行深入访问。总的来说,Newtonsoft.Json为C#开发者提供了处理JSON数据的强大工具,使得读取和解析JSON文本变得直观且高效。

C#模拟HTTP协议接收请求并返回信息,该怎么处理
Create("http:\/\/www.baidu.com");request.Method="get";request.ContentType="application\/json";WebResponse repsonse=request.GetResponse();using(StreamReader reader=new StreamReader(response.GetResponseStream())){ string result=reader.ReadToEnd();\/\/result就是返回的信息。} ...

相似回答