当前位置: 技术问答>java相关
谁能给我一些用xerces_j解析xml文档的例子,越多越好
来源: 互联网 发布时间:2015-08-11
本文导语: 谁能给我一些用xerces_j解析xml文档的例子,越多越好 | //saxtest.java import org.xml.sax.*; import org.apache.xerces.parsers.*; import org.xml.sax.helpers.*; public class saxtest extends DefaultHandler{ public static void m...
谁能给我一些用xerces_j解析xml文档的例子,越多越好
|
//saxtest.java
import org.xml.sax.*;
import org.apache.xerces.parsers.*;
import org.xml.sax.helpers.*;
public class saxtest extends DefaultHandler{
public static void main(String args[])throws Exception{
(new saxtest()).run(args[0]);
}
public void run(String file)throws Exception{
XMLReader parser=new SAXParser();
parser.setContentHandler(this);
parser.parse(file);
}
public void startDocument() throws SAXException{
System.out.println("starting parse XML file....");
}
public void startElement(String uri, String localName, String rawName,Attributes attlist) throws SAXException {
System.out.println(localName);
}
public void endElement(String uri, String localName, String rawName) throws SAXException {
}
public void characters(char[] ch,int start,int length) throws SAXException{
System.out.println(new String(ch,start,length));
}
public void endDocument() throws SAXException{
System.out.println("end parse XML file!");
}
}
import org.xml.sax.*;
import org.apache.xerces.parsers.*;
import org.xml.sax.helpers.*;
public class saxtest extends DefaultHandler{
public static void main(String args[])throws Exception{
(new saxtest()).run(args[0]);
}
public void run(String file)throws Exception{
XMLReader parser=new SAXParser();
parser.setContentHandler(this);
parser.parse(file);
}
public void startDocument() throws SAXException{
System.out.println("starting parse XML file....");
}
public void startElement(String uri, String localName, String rawName,Attributes attlist) throws SAXException {
System.out.println(localName);
}
public void endElement(String uri, String localName, String rawName) throws SAXException {
}
public void characters(char[] ch,int start,int length) throws SAXException{
System.out.println(new String(ch,start,length));
}
public void endDocument() throws SAXException{
System.out.println("end parse XML file!");
}
}
|
那个里面不是有例子程序么
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。