091_解析Callout XML 处理方式

Posted bandarifang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了091_解析Callout XML 处理方式相关的知识,希望对你有一定的参考价值。

XML:

<?xml version="1.0" encoding="iso-8859-1" ?>
<results>

<result>

<ip>111.93.167.67</ip>

<host />

<isp>Tata Teleservices ISP</isp>

<org>Tata Teleservices ISP</org>

<region>Calcutta</region>

<countrycode>IN</countrycode>

<latitude>22.569700241089</latitude>

<longitude>88.369697570801</longitude>

<queries>2</queries>

</result>

</results>

  

 

APEX:

public class OrgInfo_XmlStreamReader {

	public String org{get;set;}

	public List<String> XMLData{get;set;}

	public OrgInfo_XmlStreamReader(){

	   XMLData=new List<String>();

	}

 
	public List<String> getOrganisationInfo(String ip){ 

			Http http = new Http();

			HttpRequest req = new HttpRequest();

			req.setEndpoint(‘http://xml.utrace.de/?query=‘+ip);

			req.setMethod(‘GET‘);

			HttpResponse res = http.send(req);

			 

			// Log the XML content

			String xmlContent=res.getBody();

			System.debug(res.getBody());

			System.debug(‘#####XmlStreamReader ##11##‘);

			// Generate the HTTP response as an XML stream

			 

			XmlStreamReader reader = res.getXmlStreamReader();

			System.debug(‘##########XML DATA##########‘+res.getXmlStreamReader());

			 

			XMLData=XMLParser(res.getBody());

			return XMLData;

	}

 

	public List<String> XMLParser(String strXml){

		System.debug(‘####Inside XMLParser Method########‘+strXml);

		List<String> orgInfo=new List<String>();

		Dom.Document doc = new Dom.Document();

		doc.load(strXml);

		//Retrieve the root element for this document.

		Dom.XMLNode Envelope = doc.getRootElement();

		Dom.XMLNode Body= Envelope.getChildElements()[0];

		string user_createResult = ‘‘;

		 

		for(Dom.XMLNode child : Body.getChildElements()) {

		   orgInfo.add(child .getText());

		}

		return orgInfo;

	}

}

  

以上是关于091_解析Callout XML 处理方式的主要内容,如果未能解决你的问题,请参考以下文章

MapKit之大头针全面解析(使用系统大头针自定义大头针callout视图使用图片显示大头针)

[JavaWeb-XML]XML_解析_解析方式

JavaXML解析之SAX

XML —— SAX方式解析XML

比较流行 java xml解析器有几种 名子是啥?

SAX方式解析XML