Generate XML from a text file in Java
Asked Answered
S

1

0

This is my text file:

5625145214 6
8562320154 2
8542154157 5
6325145214 5
5214214584 6
5625142224 3
8562456754 1

I want to use XStream to generate XML file:

This is my code:

    private static void generateXml() throws IOException {
    XStream xStream = new XStream(new DomDriver());

    String line = null;
    try (BufferedReader br = new BufferedReader(new FileReader("Unique Numbers.txt"))) {
        while ((line = br.readLine()) != null) {
            String xml = xStream.toXML(line);
            System.out.println(xml);
        }
    }

}

How can i generate xml file? I need it.

Sorayasorb answered 10/8, 2014 at 15:27 Comment(0)
H
1

I don't how you want your xml, but the following code :

public static void main(String[] args) {        
        generateXml();
    }
     private static void generateXml()  {
            XStream xStream = new XStream(new DomDriver());

            String line = null;
            try{
                BufferedReader br = new BufferedReader(new FileReader(new File("Unique Numbers.txt"))) ;

                while ((line = br.readLine()) != null) {
                    String xml = xStream.toXML(line);
                    System.out.println(xml);
                }
            }catch(IOException ioe){
                System.out.println(ioe.getMessage());
            }

            }

would print :

<string>5625145214 6</string>
<string>8562320154 2</string>
<string>8542154157 5</string>
<string>6325145214 5</string>
<string>5214214584 6</string>
<string>5625142224 3</string>
<string>8562456754 1</string>
Harpy answered 10/8, 2014 at 15:57 Comment(2)
Should i write this xml to a file?Sorayasorb
Yes, if you'd like to. Depends on what you want to achieve.Harpy

© 2022 - 2024 — McMap. All rights reserved.