webservice返回的xml怎么解析

 我来答
育知同创教育
2016-08-07 · 百度知道合伙人官方认证企业
育知同创教育
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
展开全部

webservice返回的xml解析方法:

一般来说,调用webService通常需要几个步骤,在调用之前,首先需要下载Soap的jar包。

1、参数设置:上面说到的几个参数都要先设置,这主要依赖于要调用的web'Service的网址:

// 命名空间      

String nameSpace = "http://WebXml.com.cn/";      

// 调用的方法名称      

String methodName = "getDetailInfoByTrainCode";      

// EndPoint      

String endPoint = "http//webservice.webxml.com.cn/WebServices/TrainTimeWebService.asmx";      

// SOAP Action      

String soapAction = "http//WebXml.com.cn/getDetailInfoByTrainCode";     

2、指定命名空间与调用方法名

// 指定WebService的命名空间和调用的方法名      

SoapObject rpc = new SoapObject(nameSpace, methodName);    

3、设置参数:

// 设置需调用WebService接口需要传入的两个参数TrainCode、userId      

rpc.addProperty("TrainCode", params[0]);      

rpc.addProperty("UserID","");   

4、生成调用WebService方法的SOAP请求信息

// 生成调用WebService方法的SOAP请求信息,并指定SOAP的版本      

SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER12);   

envelope.bodyOut = rpc;   

5、调用WebService方法

try {      

    // 调用WebService      

    transport.call(soapAction, envelope);      

} catch (Exception e) {      

    e.printStackTrace();      

}     

6、解析WebService中的DataSet数据

SoapObject soap1=(SoapObject)object.getProperty("getDetailInfoByTrainCodeResult");  

SoapObject childs=(SoapObject)soap1.getProperty(1);  

SoapObject soap2=(SoapObject)childs.getProperty(0);  

///  

for(int i=0;i<soap2.getPropertyCount();i++){  

SoapObject soap3=(SoapObject)soap2.getProperty(i);  

///  

    Info info=new Info();  

    info.setStation(soap3.getProperty(0).toString());  

    info.setArriveTime(soap3.getProperty(1).toString());  

    info.setStartTime(soap3.getProperty(2).toString());  

    info.setKm(soap3.getProperty(3).toString());  

    Raininfo.add(info);  

//result=soap3.getProperty(3).toString();  

}  

数据格式如下:

匿名用户
2016-08-01
展开全部
string title = HttpUtility.UrlEncode(txtTitle.Text);
string content = HttpUtility.UrlEncode(content1.Value);

string postData = "title=" + title + "&content=" + content;
byte[] dataBytes = Encoding.UTF8.GetBytes(postData);

System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch();
sw.Start();
string url = System.Configuration.ConfigurationManager.AppSettings["KeywordWebService"];
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);

request.ContentType = "application/x-www-form-urlencoded";
request.ContentLength = dataBytes.Length;
request.Method = "POST";

Stream postStream = request.GetRequestStream();
postStream.Write(dataBytes, 0, dataBytes.Length);
postStream.Close();

HttpWebResponse response = (HttpWebResponse)request.GetResponse();

System.Xml.XmlDocument xml = new System.Xml.XmlDocument();

StreamReader receiveStream = new StreamReader(response.GetResponseStream());
string receiveString = receiveStream.ReadToEnd();
sw.Stop();

xml.LoadXml(receiveString);

System.Xml.XmlNodeList keywords = xml.SelectNodes("//Keyword");
string strkeywords = "";
foreach (System.Xml.XmlNode keyword in keywords)
{
System.Diagnostics.Debug.WriteLine(keyword.InnerText);
strkeywords = strkeywords + keyword.InnerText + " ";
}

this.txtSearch.Value = strkeywords.Trim();
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式