XML文件:
<?xml version="1.0" encoding="utf8"?>
<bookstore>
<book>
<title lang="USA">Harry Potter1</title>
<author>J K. Rowling1</author>
<year>20051</year>
<price>1000</price>
</book>
<book>
<title lang="cn">Harry Potter2</title>
<author>J K. Rowling2</author>
<year>20052</year>
<price>29.992</price>
</book>
<book>
<title lang="zn">Harry Potter3</title>
<author>J K. Rowling3</author>
<year>20053</year>
<price>29.993</price>
</book>
</bookstore>
java代码:
package xpath;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.Uns