KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > samples > common > XMLToFastInfoset


1 /*
2  * Fast Infoset ver. 0.1 software ("Software")
3  *
4  * Copyright, 2004-2005 Sun Microsystems, Inc. All Rights Reserved.
5  *
6  * Software is licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License. You may
8  * obtain a copy of the License at:
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15  * License for the specific language governing permissions and limitations.
16  *
17  * Sun supports and benefits from the global community of open source
18  * developers, and thanks the community for its important contributions and
19  * open standards-based technology, which Sun has adopted into many of its
20  * products.
21  *
22  * Please note that portions of Software may be provided with notices and
23  * open source licenses from such communities and third parties that govern the
24  * use of those portions, and any licenses granted hereunder do not alter any
25  * rights and obligations you may have under such open source licenses,
26  * however, the disclaimer of warranty and limitation of liability provisions
27  * in this License will apply to all Software in this distribution.
28  *
29  * You acknowledge that the Software is not designed, licensed or intended
30  * for use in the design, construction, operation or maintenance of any nuclear
31  * facility.
32  *
33  * Apache License
34  * Version 2.0, January 2004
35  * http://www.apache.org/licenses/
36  *
37  */

38
39
40 package samples.common;
41
42
43 import java.io.File JavaDoc;
44 import samples.transform.*;
45
46
47 /** <p>Converts XML files into FastInfoset documents.</p>
48  * This utility class uses samples.transform.XMLToFastInfosetStAXSerializer to
49  * transform XML files into FastInfoset documents.
50  * Since only XML files are packaged in the sample package, thie utility is called
51  * in samples that require FI documents to create FI documents from XML files.
52  */

53
54 public class XMLToFastInfoset {
55     
56     /** Create FI documents from XML files
57      *
58      * @param args XML files
59      */

60     public static void main(String JavaDoc[] args) {
61         if (args.length < 1) {
62             displayUsageAndExit();
63         }
64         try {
65             XMLToFastInfosetSAXSerializer docSerializer = new XMLToFastInfosetSAXSerializer();
66             for (int i=0; i<args.length; i++) {
67                 //XML input file, such as ./data/inv100.xml
68
File JavaDoc input = new File JavaDoc(args[i]);
69                 //FastInfoset output file, such as ./data/inv100_sax.finf.
70
String JavaDoc finf = getFinfFilename(args[i]);
71                 File JavaDoc ouput = new File JavaDoc(finf);
72                 docSerializer.write(input, ouput);
73             }
74         } catch (Exception JavaDoc e) {
75             e.printStackTrace();
76         }
77     }
78
79     private static String JavaDoc getFinfFilename(String JavaDoc xmlFilename) {
80         int ext = xmlFilename.lastIndexOf(".");
81         return xmlFilename.substring(0, ext) + ".finf";
82     }
83
84     private static void displayUsageAndExit() {
85         System.err.println("Usage: XMLToFastInfoset XMLfiles+");
86         System.exit(1);
87     }
88     
89 }
90
Popular Tags