用JDOM操作XML檔案
這個文章不是我寫的,貼在這裡,作者不要怪我,阿彌陀佛!
Java + XML = JDOM !
這就是JDOM設計者的目標。如果你曾經使用過煩人的SAX或是DOM來處理XML,你就會知道為什麼要有JDOM或者是JAXB。在今年(2002)的JavaOne會議上JDOM的主要創始人Jason Hunter有一篇精彩的演講介紹了JDOM技術,題目就是JDOM Makes XML Easy。
獲得並安裝JDOM
在可以下載JDOM的最新版本。以JDOM beta8的2進製版本為例。下載後解壓縮,JDOM的jar檔案就是build目錄下的檔案jdom.jar,將之加入類路徑。另外JDOM還需要lib目錄下那些jar檔案如xerces.jar,jaxp.jar的支援。如果在使用中出現以下錯誤:
java.lang.NoSuchMethodError
或
java.lang.NoClassDefFoundError: org/xml/sax/SAXNotRecognizedException
你需要保證xerces.jar檔案在CLASSPATH中位於其他XML類,如JAXP或Crimson之前,這些類檔案,包括以前老版本的xerces,可能不支援SAX2.0或DOM Level 2。於是導致了上面的錯誤。
一個簡單的例子
JDOM的處理方式有些類似於DOM,但它主要是用SAX實現的,你不必擔心處理速度和記憶體的問題。另外,JDOM中幾乎沒有介面,的類全部是實實在在的類,沒有類工廠類的。
下面是例項用的XML檔案:
Java程式設計入門書名>
張三作者>
電子出版社出版社>
35.0價格>
2002-10-07出版日期>
書>
XML在Java中的應用書名>
李四作者>
希望出版社出版社>
92.0價格>
2002-10-07出版日期>
書>
書庫>
下面是操作XML檔案的Bean:
package xml;
/**
* XML的讀寫操作Bean
*/
import java.io.*;
import java.util.*;
import org.jdom.*;
import org.jdom.output.*;
import org.jdom.input.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class XmlBean{
private String bookname,author,pub,price,pubdate;
public String getbookname() { return bookname;}
public String getauthor() { return author;}
public String getpub() { return pub;}
public String getprice() { return price;}
public String getpubdate() { return pubdate;}
public void setbookname(String bookname) { this.bookname =bookname ; }
public void setauthor(String author) { this.author =author; }
public void setpub(String pub) { this.pub =pub ; }
public void setprice(String price) { this.price =price ; }
public void setpubdate(String pubdate) { this.pubdate =pubdate ; }
public XmlBean(){}
/**
* 讀取XML檔案所有資訊
*/
public Vector LoadXML(String path)throws Exception{
Vector xmlVector = null;
FileInputStream fi = null;
try{
fi = new FileInputStream(path);
xmlVector = new Vector();
SAXBuilder sb = new SAXBuilder();
Document doc = sb.build(fi);
Element root = doc.getRootElement(); //得到根元素
List books = root.getChildren(); //得到根元素所有子元素的集合
Element book =null;
XmlBean xml =null;
for(int i=0;i
book = (Element)books.get(i ); //得到第一本書元素
xml.setbookname(book.getChild("書名").getText());
xml.setauthor(book.getChild("作者").getText());
xml.setpub(book.getChild("出版社").getText());
xml.setprice(book.getChild("價格").getText());
xml.setpubdate(book.getChild("出版日期").getText());
xmlVector.add(xml);
}
}
catch(Exception e){
System.err.println(e+"error");
}
finally{
try{
fi.close();
}
catch(Exception e){
e.printStackTrace();
}
}
return xmlVector;
}
/**
* 刪除XML檔案指定資訊
*/
public static void DelXML(HttpServletRequest request)throws Exception{
FileInputStream fi = null;
FileOutputStream fo = null;
try{
String path=request.getParameter("path");
int xmlid=Integer.parseInt(request.getParameter("id"));
fi = new FileInputStream(path);
SAXBuilder sb = new SAXBuilder();
Document doc = sb.build(fi);
Element root = doc.getRootElement(); //得到根元素
List books = root.getChildren(); //得到根元素所有子元素的集合
books.remove(xmlid);//刪除指定位置的子元素
String indent = " ";
boolean newLines = true;
XMLOutputter outp = new XMLOutputter(indent,newLines,"GBK");
fo=new FileOutputStream(path);
outp.output(doc,fo);
}
catch(Exception e){
System.err.println(e+"error");
}
finally{
try{
fi.close();
fo.close();
}
catch(Exception e){
e.printStackTrace();
}
}
}
/**
* 新增XML檔案指定資訊
*/
public static void AddXML(HttpServletRequest request)throws Exception{
FileInputStream fi = null;
FileOutputStream fo = null;
try{
String path=request.getParameter("path");
fi = new FileInputStream(path);
SAXBuilder sb = new SAXBuilder();
Document doc = sb.build(fi);
Element root = doc.getRootElement(); //得到根元素
List books = root.getChildren(); //得到根元素所有子元素的集合
String bookname=request.getParameter("bookname");
String author=request.getParameter("author");
String price=request.getParameter("price");
String pub=request.getParameter("pub");
String pubdate=request.getParameter("pubdate");
Text newtext;
Element newbook= new Element("書");
Element newname= new Element("書名");
newname.setText(bookname);
newbook.addContent(newname);
Element newauthor= new Element("作者");
newauthor.setText(author);
newbook.addContent(newauthor);
Element newpub= new Element("出版社");
newpub.setText(pub);
newbook.addContent(newpub);
Element newprice= new Element("價格");
newprice.setText(price);
newbook.addContent(newprice);
Element newdate= new Element("出版日期");
newdate.setText(pubdate);
newbook.addContent(newdate);
books.add(newbook);//增加子元素
String indent = " ";
boolean newLines = true;
XMLOutputter outp = new XMLOutputter(indent,newLines,"GBK");
fo=new FileOutputStream(path);
outp.output(doc,fo);
}
catch(Exception e){
System.err.println(e+"error");
}
finally{
try{
fi.close();
fo.close();
}
catch(Exception e){
e.printStackTrace();
}
}
}
/**
* 修改XML檔案指定資訊
*/
public static void EditXML(HttpServletRequest request)throws Exception{
FileInputStream fi = null;
FileOutputStream fo = null;
try{
String path=request.getParameter("path");
int xmlid=Integer.parseInt(request.getParameter("id"));
fi = new FileInputStream(path);
SAXBuilder sb = new SAXBuilder();
Document doc = sb.build(fi);
Element root = doc.getRootElement(); //得到根元素
List books = root.getChildren(); //得到根元素所有子元素的集合
Element book=(Element)books.get(xmlid);
String bookname=request.getParameter("bookname");
String author=request.getParameter("author");
String price=request.getParameter("price");
String pub=request.getParameter("pub");
String pubdate=request.getParameter("pubdate");
Text newtext;
Element newname= book.getChild("書名");
newname.setText(bookname);//修改書名為新的書名
Element newauthor= book.getChild("作者");
newauthor.setText(author);
Element newpub= book.getChild("出版社");
newpub.setText(pub);
Element newprice= book.getChild("價格");
newprice.setText(price);
Element newdate= book.getChild("出版日期");
newdate.setText(pubdate);
//books.set(xmlid,book);//修改子元素
String indent = " ";
boolean newLines = true;
XMLOutputter outp = new XMLOutputter(indent,newLines,"GBK");
fo=new FileOutputStream(path);
outp.output(doc,fo);
}
catch(Exception e){
System.err.println(e+"error");
}
finally{
try{
fi.close();
fo.close();
}
catch(Exception e){
e.printStackTrace();
}
}
}
}
下面是操作的jsp檔案:
JDOM操作XML檔案
讀取XML檔案中的所有資料
書名 | 作者 | 出版社 | 價格 | 出版日期 | 操作 |
String path = application.getRealPath("/test/xml/")+"testC.xml";
XmlBean xml=new XmlBean();
Vector xmlall=xml.LoadXML(path);
for(int i=0;i
/**out.println("書名:"+xml.getbookname()+"
");
out.println("作者:"+xml.getauthor()+"
");
out.println("出版社:"+xml.getpub()+"
");
out.println("價格:"+xml.getprice()+"
");
out.println("出版日期:"+xml.getpubdate()+"
");
*/
%>
刪除 |
下面是處理上一檔案提交的jsp檔案:
XmlBean.AddXML(request);
out.println("
新增成功
返回");
}
else if(request.getParameter("act")!=null && request.getParameter("act").equals("del")){
XmlBean.DelXML(request);
out.println("
刪除成功
返回");
}
else if(request.getParameter("act")!=null && request.getParameter("act").equals("edit")){
XmlBean.EditXML(request);
out.println("
修改成功
返回");
}
else{out.print("
非法操作
返回");}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/5859/viewspace-915024/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 用JDOM讀取XML檔案XML
- jdom解析xml檔案XML
- 用JDOM處理XML文件 (轉)XML
- 使用jdom解析XMLXML
- .NET操作XML檔案---[新增]XML
- 有關jdom解析xmlXML
- Python操作xml檔案(xml.etree.ElementTree)PythonXML
- JDom讀寫XML(程式碼)XML
- java 語音用xml檔案實現圖形介面 xml檔案JavaXML
- 檔案上傳用XML (轉)XML
- 四種操作xml的方式: SAX, DOM, JDOM , DOM4J的比較XML
- xml檔案XML
- C#讀寫xml檔案應用案例C#XML
- java中四種操作(DOM、SAX、JDOM、DOM4J)xml方式詳解與比較JavaXML
- [XML與properties檔案]XML
- GData解析XML檔案XML
- jquery 解析xml檔案jQueryXML
- xml是什麼格式的檔案 xml檔案怎麼開啟XML
- 用C#把檔案轉換為XML(轉)C#XML
- 讀取xml檔案 解析雙層xmlXML
- 使用JDOM處理XML資料之PDF篇(二) (轉)XML
- 使用JDOM處理XML資料之PDF篇(一) (轉)XML
- Go xml檔案處理GoXML
- 使用 Java 解析XML檔案JavaXML
- SQL Map XML配置檔案。SQLXML
- 讀寫iOS XML檔案iOSXML
- C# 建立XML檔案C#XML
- 利用Perl解析XML檔案XML
- JAVA 讀取xml檔案JavaXML
- C#解析XML檔案C#XML
- XML口令檔案描述 (轉)XML
- python XML 檔案解析PythonXML
- asp.net 對xml檔案的讀寫,新增,修改,刪除操作ASP.NETXML
- 1.4檔案操作之修改程式配置檔案小應用
- 通過JDOM實現XML與String的相互轉換XML
- Java解析XML彙總(DOM/SAX/JDOM/DOM4j/XPath)JavaXML
- 使用JDOM處理XML資料之XSLT篇(二) (轉)XML
- 使用JDOM處理XML資料之XSLT篇(一) (轉)XML