KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > nu > xom > samples > EncodingDemo


1 /* Copyright 2002, 2003 Elliotte Rusty Harold
2    
3    This library is free software; you can redistribute it and/or modify
4    it under the terms of version 2.1 of the GNU Lesser General Public
5    License as published by the Free Software Foundation.
6    
7    This library is distributed in the hope that it will be useful,
8    but WITHOUT ANY WARRANTY; without even the implied warranty of
9    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10    GNU Lesser General Public License for more details.
11    
12    You should have received a copy of the GNU Lesser General Public
13    License along with this library; if not, write to the
14    Free Software Foundation, Inc., 59 Temple Place, Suite 330,
15    Boston, MA 02111-1307 USA
16    
17    You can contact Elliotte Rusty Harold by sending e-mail to
18    elharo@metalab.unc.edu. Please include the word "XOM" in the
19    subject line. The XOM home page is located at http://www.xom.nu/
20 */

21
22 package nu.xom.samples;
23
24
25 import java.io.FileOutputStream JavaDoc;
26 import java.io.IOException JavaDoc;
27 import java.io.OutputStream JavaDoc;
28
29 import nu.xom.Attribute;
30 import nu.xom.Document;
31 import nu.xom.Element;
32 import nu.xom.Serializer;
33
34 /**
35  * @author Elliotte Rusty Harold
36  * @version 1.0
37  *
38  */

39 public class EncodingDemo {
40
41     public static void main(String JavaDoc[] args) {
42      
43         String JavaDoc encoding = "ISO-8859-2";
44         if (args.length > 0) encoding = args[0];
45         Element root = new Element("root");
46         Document doc = new Document(root);
47      
48         for (int i = 0xA0; i <= 0x1FF; i++) {
49             Element data = new Element("data");
50             data.appendChild((char) i + "");
51             data.addAttribute(
52               new Attribute("character", String.valueOf(i))
53             );
54             root.appendChild(data);
55         }
56      
57         try {
58             OutputStream JavaDoc out
59               = new FileOutputStream JavaDoc("data_" + encoding + ".xml");
60             Serializer serializer = new Serializer(out, encoding);
61             serializer.setIndent(4);
62             serializer.write(doc);
63             serializer.flush();
64             out.close();
65         }
66         catch (IOException JavaDoc ex) {
67             ex.printStackTrace();
68         }
69         
70         
71     }
72
73 }
74
Popular Tags