I need to be able to serialize a string and then have it save in a .txt or .xml file. I've never used the implementation to read/write files, just remember I am a relative beginner. Also, I need to know how to deserialize the string to be printed out in terminal as a normal string.
|
If you can serialize it to a txt file, just open an ObjectOutputStream and have it use String's own serialization capability for you.
You could also just open a PrintStream and syphon it out that way, then use a BufferedReader and readLine(). If you really want to get fancy (since this is a HW assignment after all), you could use a for loop and print each character individually. Using XML is more complicated than you need to serialize a String and using an external library is just overkill. |
|||
|
|
|
XStream has facilities to read from and write to files, see the simple examples (Writer.java and Reader.java) in this article: http://www.ibm.com/developerworks/library/x-xstream/index.html |
||||
|
If you are beginning Java, then take some time to look through the Apache Commons project. There are lots of basic extensions to java that you will make use of many times. I'm assuming you just want to persist a string so you can read it back later - in which case it doesn't necessarily need to be XML. To write a string to a file, see org.apache.commons.io.FileUtils:
To read it back:
References: http://commons.apache.org/io/api-release/org/apache/commons/io/FileUtils.html Make sure you also look at commons-lang for lots of good basic stuff. |
|||
|
|
|
If you need to create a text file containing XML that represents the contents of an object (and make it bidirectional), just use JSON-lib:
From there just wrote the String to your file. Much simpler than all those XML API's. Now, however, if you need to conform to a DTD or XSD, this is a bad way to go as it's much more free-format and conforms only to the object layout. http://json-lib.sourceforge.net/usage.html Piko |
|||
|
|
|
Is there any particular reason to use XStream? This would be extremely easy to do with something like JDOM if all you are doing is trying to serialize a string or two. Ie, something like: Document doc = new Document();
Some of the details above are probably wrong, but thats the basic flow. Perhaps you should ask a more specific question so that we can understand exactly what problem it is that you are having? |
|||
|
|
|
From http://www.xml.com/pub/a/2004/08/18/xstream.html:
You can then take the xml string and write it to a file. |
|||
|
|
|
try something like this:
|
|||
|
|
