您的位置:首页 > 编程语言 > ASP

Asp.Net_抓包解析xml文件为json

2015-09-14 17:42 736 查看
protected void Button1_Click(object sender, EventArgs e)
{
string Phone = this.Txt_Con.Text;
string url = "http://api.showji.com/Locating/www.show.ji.c.o.m.aspx?m=" + Phone;

foreach (string item in GetHttpXml(url))
{

TextBox1.Text += item + "\n";
}
}

public string[] GetHttpXml(string url)
{
XmlDocument xml = new XmlDocument();
xml.Load(url);

XmlNamespaceManager xmlNm = new XmlNamespaceManager(xml.NameTable);
xmlNm.AddNamespace("content", "http://api.showji.com/Locating/");
XmlNodeList nodes = xml.SelectNodes("//content:QueryResult|//content:Mobile|//content:Province|//content:City|//content:Corp|//content:Card|//content:AreaCode|//content:PostCode", xmlNm);
if (nodes.Count == 8)
{
if ("True".Equals(nodes[1].InnerText))
{

return new string[] { "手机号:"+nodes[0].InnerText, "运行商:"+nodes[2].InnerText, "归属省:"+nodes[3].InnerText, "归属市:"+nodes[4].InnerText,"城市区号:"+nodes[5].InnerText,"城市邮编"+nodes[6].InnerText};
}
}
return new string[] { "FALSE" };
}


Code
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: