자카르타 Common Digester 를 사용 하여 XML 을 해석 하 는 간단 한 예
http://commons.apache.org/digester/
그 중 가방 에 주의 하 세 요.
BeanUtils 와 Logging
Digester 를 사용 하면 XML 을 신속하게 해석 하고 BEAN 대상 으로 봉인 할 수 있 습 니 다.
Example xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE digester-rules PUBLIC "-//Jakarta Apache //DTD digester-rules XML V1.0//EN"
"digester-rules.dtd">
<menu>
<root title=" ">
<node title="QQ" url="http://www.qq.com" ></node>
<node title="163" url="http://www.163.com" ></node>
</root>
</menu>
Beans
import java.util.Vector;
/**
* @author Kenny
*
*/
public class Menu {
private Vector<Root> roots;
public Menu() {
roots = new Vector<Root>();
}
public void addRoot(Root root){
roots.addElement(root);
}
public Vector<Root> getRoots() {
return roots;
}
@Override
public String toString() {
return "Menu [roots=" + roots + "]";
}
}
import java.util.Vector;
/**
* @author Kenny
*
*/
public class Root {
private String title;
private Vector<Node> nodes;
public Root() {
nodes = new Vector<Node>(10);
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public Vector<Node> getNode() {
return nodes;
}
public void addNode(Node node) {
nodes.addElement(node);
}
@Override
public String toString() {
return "Root [nodes=" + nodes + ", title=" + title + "]";
}
}
/**
* @author Kenny
*
*/
public class Node {
private String title;
private String url;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
@Override
public String toString() {
return "Node [title=" + title + ", url=" + url + "]";
}
}
Test Unit
import java.io.IOException;
import java.net.URL;
import org.apache.commons.digester.Digester;
import org.junit.Assert;
import org.junit.Test;
import org.xml.sax.SAXException;
/**
* @author Kenny
*
*/
public class TestDigest {
@Test
public void testParse() {
URL xmlURL = this.getClass().getClassLoader().getResource("menu.xml");
Digester digester = new Digester();
digester.setValidating(false);
digester.addObjectCreate("menu", Menu.class);
digester.addObjectCreate("menu/root", Root.class);
digester.addSetProperties("menu/root", "title","title");
digester.addSetNext("menu/root", "addRoot");
digester.addObjectCreate("menu/root/node", Node.class);
digester.addSetProperties("menu/root/node", "title","title");
digester.addSetProperties("menu/root/node", "url","url");
digester.addSetNext("menu/root/node", "addNode");
Menu menu = null;
try {
System.out.println(xmlURL.getPath());
menu = (Menu) digester.parse(xmlURL);
} catch (IOException e) {
e.printStackTrace();
} catch (SAXException e) {
e.printStackTrace();
}
Assert.assertNotNull(menu);
System.out.println(menu);
}
}
그 중에서 digester. addSetProperties 는 노드 의 속성 값 을 가 져 오 는 데 사 용 됩 니 다.즉 < root title = "사이트 주소" 입 니 다.
< root > < title > 사이트 주소 < / title > < / root > 형식 이 라면 digester. addBean Property Setter 방법 을 사용 할 수 있 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.