给出一个如下所示的xml文档:
<?xml version="1.0"?>
<xml_api_reply version="1">
<weather section="0" row="0" mobile_zipped="1" mobile_row="0" tab_id="0" module_id="0">
<forecast_information>
<city data="Cordova, Andalusia"/>
<postal_code data="cordoba"/>
<latitude_e6 data=""/>
<longitude_e6 data=""/>
<forecast_date data="2012-07-18"/>
<current_date_time data="1970-01-01 00:00:00 +0000"/>
<unit_system data="SI"/>
</forecast_information>
我想借助System.out.println()
显示城市数据, postal_code 和日期属性。
有什么想法吗?
答案 0 :(得分:8)
我有解决方案。我从未在此博客或其他任何内容中看到此解决方案。我希望它对其他人有用。
package Main;
import java.io.File;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.DocumentBuilder;
import org.w3c.dom.Document;
public class XmlTest
{
public static void main(String argv[])
{
try
{
DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
Document doc = dBuilder.parse(new File("xmlPrueba.xml"));
doc.getDocumentElement().normalize();
System.out.println("City: " +
documento.getDocumentElement().getChildNodes().item(0).getFirstChild().getChildNodes().item(0).getAttributes().getNamedItem("data").getNodeValue());
System.out.println("Postal Code: " +
documento.getDocumentElement().getChildNodes().item(0).getFirstChild().getChildNodes().item(1).getAttributes().getNamedItem("data").getNodeValue());
System.out.println("Date: " +
documento.getDocumentElement().getChildNodes().item(0).getFirstChild().getChildNodes().item(4).getAttributes().getNamedItem("data").getNodeValue());
} catch (Exception e)
{
e.printStackTrace();
}
}
}
或更容易 ......
System.out.println("City: " +
doc.getDocumentElement().getElementsByTagName("forecast_information").item(0).getChildNodes().item(0).getAttributes().getNamedItem("data").getNodeValue());
System.out.println("Postal Code: " +
doc.getDocumentElement().getElementsByTagName("forecast_information").item(0).getChildNodes().item(1).getAttributes().getNamedItem("data").getNodeValue());
System.out.println("Date: " +
doc.getDocumentElement().getElementsByTagName("forecast_information").item(0).getChildNodes().item(4).getAttributes().getNamedItem("data").getNodeValue());
.....
感谢您的帮助!!!
答案 1 :(得分:3)
稍微清理一下类型声明,基本的空检查:
从'dom'
值中的任何节点开始NodeList l = dom.getElementsByTagName("tagname");
for (int j=0; j<l.getLength(); ++j) {
Node prop = l.item(j);
NamedNodeMap attr = prop.getAttributes();
if (null != attr) {
Node p = attr.getNamedItem("data");
log.debug(p.getNodeValue());
}
}
答案 2 :(得分:2)
Java具有多种用于XML解析的功能 - SAX,StAX和DOM API。对于初学者来说, DOM API是最舒适的。看看this nice tutorial。
我必须在XSLT上与Thom相矛盾。虽然它是一个功能强大的API,但它相当复杂,对于初学者来说可能是令人生畏和令人沮丧的。
答案 3 :(得分:1)
你应该看看这个:
JDOM:http://www.javaworld.com/jw-05-2000/jw-0518-jdom.html
和
SAX:http://en.wikipedia.org/wiki/Simple_API_for_XML
Java XML的简单解析器
答案 4 :(得分:1)
DOM和SAX都是低级API,很难使用它们。 这个问题是关于
java中的XML解析
所以这可以通过SAX和DOM实现,但使用Apache Digester会更容易。 这也称为Data Binding。
希望这会帮助你。
答案 5 :(得分:0)
查找XSLT。我从来没有使用过它,但它会对XML文档进行格式化。