我试图在标记<catalog> </catalog>
之间获取内容,因为这是xml文件:
<test1>
</test1>
<catalog>
<book id="bk101">
<author>Gambardella, Matthew</author>
<title>XML Developer's Guide</title>
<genre>Computer</genre>
<price>44.95</price>
</book>
<book id="bk102">
<author>Ralls, Kim</author>
<title>Midnight Rain</title>
<genre>Fantasy</genre>
<price>5.95</price>
</book>
</catalog>
仅得到结果:
<book id="bk101">
<author>Gambardella, Matthew</author>
<title>XML Developer's Guide</title>
<genre>Computer</genre>
<price>44.95</price>
</book>
<book id="bk102">
<author>Ralls, Kim</author>
<title>Midnight Rain</title>
<genre>Fantasy</genre>
<price>5.95</price>
</book>
我开始学习jdom,但是我可以达到这个结果我只知道基本操作,任何人都可以知道如何做到这一点,并提前感谢。 我试试这个:
public static void read() throws JDOMException, IOException{
SAXBuilder reader = new SAXBuilder();
Document doc = reader.build(new File("C:\\Users\\HC\\Desktop\\dataset\\book.xml"));
racine = doc.getRootElement();
String root = racine.getName();
Element catalog = racine.getChild("catalog");
List nodes = catalog.getChildren();
Iterator i = nodes.iterator();
while(i.hasNext()){
Element courant = (Element) i.next();
// i want here keeping all tags inside the tag catalog
System.out.print(courant.getContent());
}
}
我得到的结果是这样的:
[[Text:
], [Element: <author/>], [Text:
], [Element: <title/>], [Text:
], [Element: <genre/>], [Text:
], [Element: <price/>], [Text:
]][[Text:
], [Element: <author/>], [Text:
], [Element: <title/>], [Text:
], [Element: <genre/>], [Text:
], [Element: <price/>], [Text:
答案 0 :(得分:0)
以下是如何使用vtd-xml
执行此操作的代码 import com.ximpleware.*;
public class getContent {
public static void main(String s[]) throws VTDException{
VTDGen vg = new VTDGen();
if (!vg.parseFile("C:\\Users\\HC\\Desktop\\dataset\\book.xml", false))
return;
VTDNav vn = vg.getNav();
if (vn.toElement(VTDNav.FIRST_CHILD, "book")){
long l = vn.getContentFragment();
System.out.println( "book content ==> ");
System.out.println(vn.toString((int)l, (int)(l<<32)));
}
}
}
答案 1 :(得分:-1)
尝试
List list = catalog.getChildren("book");
for (int i = 0; i < list.size(); i++) {
Element node = (Element) list.get(i);
System.out.println("Author : " +node.getChildText("author"));
System.out.println("Title : " + node.getChildText("title"));
// ... etc
}