明輝手游網(wǎng)中心:是一個免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺!

解析器的使用(JAXP)

[摘要]分析器的使用(一)作者: 常明 寫作日期:2000-4-26 簡介這組文章主要就目前有的XML分析器分別介紹一下他們的接口和用法。其中包括SUN的XML分析器,IBM的分析器XML4J,XML4C,ORACLE的分析器,EXPAT。SUN的JAXPJAXP API全部包括在JAXP.JAR中,...
分析器的使用(一)

作者: 常明 寫作日期:2000-4-26



簡介
這組文章主要就目前有的XML分析器分別介紹一下他們的接口和用法。
其中包括SUN的XML分析器,IBM的分析器XML4J,XML4C,ORACLE的分析器,EXPAT。
SUN的JAXP
JAXP API全部包括在JAXP.JAR中,它有兩個工廠類 SAXParserFactory和DocumentBuilderFactory 分別對應(yīng)SAX接口和DOM接口。
這兩個工廠類的作用是,通過設(shè)定其中的屬性創(chuàng)建合適的分析器,它可以配合各種分析器的具體實(shí)現(xiàn)一起使用。這就是說SAXParserFactor可以和任何符合SAX接口的PARSER一起用,不一定就是SUN的分析器;DocumentBuidlerFactory也一樣,不一定用SUN的實(shí)現(xiàn)。對于sax只要parser是實(shí)現(xiàn)org.xml.sax.Parser接口的,對于DOM就是文檔對象實(shí)現(xiàn)了 org.w3c.dom.*的接口。
SUN的分析器的實(shí)現(xiàn)是com.sun.xml.parser,它是實(shí)現(xiàn)了sax接口的,它的DOM實(shí)現(xiàn)則是基于SAX的,所以他們的分析器是一個。
下面介紹DOM的編程,首先要引入以下JAXP API定義:
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.FactoryConfigurationError;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.parsers.DocumentBuilder;
如果要處理SAX異常加入:
import org.xml.sax.SAXException;
import org.xml.sax.SAXParseException;
文件I/O:
import java.io.File;
import java.io.IOException;
如果要處理DOM異常加入:
import org.w3c.dom.Document;
import org.w3c.dom.DOMException;
程序如下,聲明一個靜態(tài)全局的DOM的Document,方便下面的處理,Document可以從文件裝入,寫可以通過程序?qū)懭,否則是空的。
public class DomEcho
{
static Document document;

public static void main (String argv [])
{
...
}

在分析過程中的異常處理的程序如下,這里有四種異常的處理:
public static void main (String argv [])
{
if (argv.length != 1) {
...
}

try {

} catch (SAXParseException spe) {
 // Error generated by the parser
 System.out.println ("\n** Parsing error"
+ ", line " + spe.getLineNumber ()
+ ", uri " + spe.getSystemId ());
 System.out.println(" " + spe.getMessage() );

 // Use the contained exception, if any
 Exceptionx = spe;
 if (spe.getException() != null)
 x = spe.getException();
 x.printStackTrace();

} catch (SAXException sxe) {
 // Error generated by this application
 // (or a parser-initialization error)
 Exceptionx = sxe;
 if (sxe.getException() != null)
 x = sxe.getException();
 x.printStackTrace();

} catch (ParserConfigurationException pce) {
 // Parser with specified options //can t be built
 pce.printStackTrace();

} catch (IOException ioe) {
 // I/O error
 ioe.printStackTrace();
}

}// main
生成分析器,有兩步,首先實(shí)例化工廠,再由工廠生成DocumentBuilder,最后開始分析:
DocumentBuilderFactory factory =DocumentBuilderFactory.newInstance();
try {
 DocumentBuilder builder =factory.newDocumentBuilder();
 document = builder.parse( new File(argv[0]) );

} catch (SAXParseException spe) {

有了Document對象后就可以做各種DOM操作,以下程序輸出XML:
XmlDocument xdoc = (XmlDocument) document;
xdoc.write (System.out);

如果要使用SAX接口程序就稍復(fù)雜一些,首先引入定義:
import java.io.*;
import org.xml.sax.*;
import javax.xml.parsers.SAXParserFactory;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.parsers.SAXParser;


和DOM的編程相似,首先一樣實(shí)例化DocumentBuilderFactory,創(chuàng)建一個SAXParser,然后開始分析,期間處理各種異常:
public static void main (String argv [])

{
if (argv.length != 1) {
System.err.println ("Usage: cmd filename");
System.exit (1);
}

// Use the default (non-validating) parser
SAXParserFactory factory = SAXParserFactory.newInstance();
try {
 NoAction noaction;
// Parse the input
SAXParser saxParser =factory.newSAXParser();
saxParser.setDocumentHandler(noaction);
saxParser.parse(new File(argv [0]), new Echo() );

} catch (Throwable t) {
t.printStackTrace ();
}
System.exit (0);
}
但用SAX是通過處理事件來進(jìn)行的,所以在分析之前,一般要設(shè)定處理器,使用saxparser的SetDocumentHandler方法來設(shè)定。 下面是一個什么都不做的事件處理器,它實(shí)現(xiàn)了DocumentHandler接口。
class NoAction implement DocumentHandler{
... 
 public void startDocument ()
throws SAXException
{
}

public void endDocument ()
throws SAXException
{
}

public void startElement (String name, AttributeList attrs)
throws SAXException
{
}

public void endElement (String name)
throws SAXException
{
}

public void characters (char buf [], int offset, int len)
throws SAXException
{
}
 ...
以上就基本介紹了sun的xml分析器的使用,有任何問題請發(fā)mail給我們一起討論。