真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何對XML進行Sax解析-創(chuàng)新互聯(lián)

這篇文章給大家分享的是有關如何對XML進行Sax解析的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

成都創(chuàng)新互聯(lián)公司主要從事網(wǎng)站設計、網(wǎng)站建設、網(wǎng)頁設計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務。立足成都服務于都,十載網(wǎng)站建設經(jīng)驗,價格優(yōu)惠、服務專業(yè),歡迎來電咨詢建站服務:028-86922220

對XML進行Sax解析:

一、對XML進行Sax解析:

Sax解析XML是事件驅動的,安裝XML的順序一步一步進行解析的.優(yōu)點不用事先調入整個文檔,占用資源少,缺點是事件過后,若沒保存數(shù)據(jù),那么數(shù)據(jù)就丟了;無狀態(tài)性;從事件中只能得到文本,但不知該文本屬于哪個元素.

二、實現(xiàn):

1.創(chuàng)建一個XMl文檔:



    
       scott
       scott
    

    
       sys
       sys
    

    
       system
       system
    
    

2.開始解析:

package Sax解析Xml;

import java.io.File;
import java.io.IOException;

import javax.xml.parsers.ParserConfigurationException;
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;

import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;

public class SaxParser {

	public static void main(String[] args) {
		
		// 1.實例化SaxParserFactory對象
		SAXParserFactory factory = SAXParserFactory.newInstance();
		try {
			// 2.創(chuàng)建解析器:
			SAXParser saxParser = factory.newSAXParser();

			// 3.獲取需要解析的文檔,生成解析器,解析文檔
			File xmlFile = new File("myXml\\cb.xml");
			MyHandler handler = new MyHandler();

			// 開始解析:
			saxParser.parse(xmlFile, handler);

		} catch (ParserConfigurationException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (SAXException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
	}

	public static class MyHandler extends DefaultHandler {

		// 作用是來記錄解析的上一個節(jié)點的名稱
		private String preTag = null;
		
		private boolean ifEnd =false;
		private String getName;
		private String getPwd;

		@Override
		public void characters(char[] ch, int start, int length)
				throws SAXException {
			// TODO Auto-generated method stub
			// super.characters(ch, start, length);
			if (preTag != null) {
				if ("name".equals(preTag)) {		
					getName = new String(ch, start, length);
				} else if ("pwd".equals(preTag)) {
				    getPwd = new String(ch, start, length);
				    ifEnd=true;

				    System.out.println("   "+getName+"");
                    System.out.println("   "+getPwd+"");
				}

			}
		}

		@Override
		public void endDocument() throws SAXException {
			// TODO Auto-generated method stub
			// super.endDocument();
			System.out.println(" ");
			System.out.println("--------------------------");
			System.out.println("解析XML完畢");
		}

		@Override
		public void endElement(String uri, String localName, String qName)
				throws SAXException {
			// TODO Auto-generated method stub
               if(ifEnd==true){
            System.out.println("  ");
            ifEnd=false;
            }
			//當一個標簽解析完后,preTag設置為null;
			preTag = null;
			
			
		}

		@Override
		public void startDocument() throws SAXException {
			// TODO Auto-generated method stub
			System.out.println("開始解析XML文件");
			System.out.println("------------------------------");
			System.out.println("");
			System.out.println(" ");
			

		}

		@Override
		public void startElement(String uri, String localName, String qName,
				Attributes attributes) throws SAXException {
			// TODO Auto-generated method stub
           // 
			if ("user".equals(qName)) {
				String s = qName;
				String s1 = attributes.getValue(0);// Id
				String s2 = attributes.getLocalName(0);
				//System.out.println(s + s1 + s2);
				System.out.println("  <"+qName+" "+"id="+"\""+s1+"\""+">");
				

			}
			preTag = qName;

		}

	}
}

三、運行結果:

如何對XML進行Sax解析

四、補充說明:

1.執(zhí)行順序:

由于Sax解析是按照xml文件的順序來解析,當讀入時,會調用startDocument()方法,當讀入的時候,由于它是個ElementNode,所以會調用startElement(String uri, String localName, String qName, Attributes attributes),當要得到oracle孩子的信息是,就會調用characters(char[] ch, int start, int length)方法。

2.內部類加static關鍵字:

內部類是動態(tài)的,也就是開頭以public class開頭。而主程序是public static class main。在Java中,類中的靜態(tài)方法不能直接調用動態(tài)方法。只有將某個內部類修飾為靜態(tài)類,然后才能夠在靜態(tài)類中調用該類的成員變量與成員方法。所以在不做其他變動的情況下,最簡單的解決辦法是將public class改為public static class.

3.startElement(String uri, String localName, String qName,Attributes attributes) 方法的參數(shù)解釋:

感謝各位的閱讀!關于“如何對XML進行Sax解析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。


文章題目:如何對XML進行Sax解析-創(chuàng)新互聯(lián)
本文URL:http://weahome.cn/article/coogso.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部