User ParseTheData - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T03:14:13Zhttp://stackoverflow.com/feeds/user/36268http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/335374/write-xml-file-using-xstream-to-filesystem-in-java3Write XML file (using XStream) to filesystem in JavaParseTheData2008-12-02T20:41:05Z2009-12-11T06:02:29Z
<p>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. </p>
http://stackoverflow.com/questions/364178/using-java-io-serializable-when-implementing-a-tree1Using java.io.Serializable when implementing a tree?ParseTheData2008-12-12T21:19:46Z2009-03-24T12:23:28Z
<p>Hey everyone, I have ANOTHER serialization question, but this time it is in regards to Java's native serialization import when serializing to binary. I have to serialize a random tree that is generated in another java file. I know how serialization and deserialization works, but the example I followed when using binary serialization with java.io.Serializable did not work in the same fashion as when I did it with, say a simple object. Here is my code segment:</p>
<pre><code>import java.io.*;
import java.io.FileInputStream;
public class BinaryS
{
public static void main(String[] args) {
Tree randomTree = RandomTreeBuilder.randomTree(10);
FileOutputStream fOut=null;
ObjectOutputStream oOut=null;
try{
fOut= new FileOutputStream("/Users/Pat/programs/binaryfile.txt");
oOut = new ObjectOutputStream(fOut);
oOut.writeObject(randomTree); //serializing randomTree
System.out.println("An employee is serialized into /Users/Pat/binaryfile.txt");
}catch(IOException e){
e.printStackTrace();
}finally{
try {
oOut.flush();
oOut.close();
fOut.close();
} catch (IOException e1) {
e1.printStackTrace();
}
}
}
});
</code></pre>
<p>I believe the problem is when I use writeObject(randomTree). I get some terminal exceptions when this happens... they are below:</p>
<p>java.io.NotSerializableException: GeneralTree
at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1081)
at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:302)
at BinaryS.main(BinaryS.java:24)</p>
<p>edit: I know it says GeneralTree, but at the start of the class it was in I put </p>
<pre><code>print("public class RandomTreeBuilder implements java.io.Serializable");
</code></pre>
<p>then, GeneralTree is found below it</p>
<pre><code>print(" protected static Tree tree;
protected static ArrayList names;
//e6.1
/**
*Builds a random tree. The build method does the work.
*/
//b6.2
public static Tree randomTree(int n) {
// Create a random binary tree with n external nodes
tree = new GeneralTree();
names = NameGenerator.getNames();
build(tree.getRoot(), n); // auxiliary recursive method
return tree;
</code></pre>
<p>");</p>
<p>Update: Hey guys, I figured out my own problem, turns out I am an idiot and didn't realize I had to download an additional .java file, an easy fix now! Thanks for your help!</p>
http://stackoverflow.com/questions/176580/what-was-your-first-programming-language/366942#3669420Answer by ParseTheData for What was your first programming language?ParseTheData2008-12-14T20:27:26Z2008-12-14T20:27:26Z<p>HTML, followed by a little PHP and more seriously, Java.</p>
http://stackoverflow.com/questions/361570/reading-an-xml-file-using-fileinputstream-for-java2Reading an XML File using FileInputStream (for Java)?ParseTheData2008-12-12T00:45:01Z2008-12-12T15:31:57Z
<p>Hi everyone, here's the deal.</p>
<p>For my project I have to serialize and deserialize a random tree using Java and XStream. My teacher made the Tree/RandomTree algorithms, so I don't have to worry about that. What I don't know how to do is this: I am using FileInputStream to read/write the xml file that I serialized and deserialized, but when I deserialize, I do not know the method used to read the file. After I read the file I should be able to convert it from XML and then print it out as a string. Here's what I have so far. (I imported everything correctly, just didn't add it to my code segment). </p>
<pre><code>FileInputStream fin;
try
{
// Open an input stream
fin = new FileInputStream ("/Users/Pat/programs/randomtree.xml");
//I don't know what to put below this, to read FileInpuStream object fin
String dexml = (String)xstream.fromXML(fin);
System.out.println(dexml);
// Close our input stream
fin.close();
System.out.println(dexml);
// Close our input stream
fin.close();
}
// Catches any error conditions
catch (IOException e)
{
System.err.println ("Unable to read from file");
System.exit(-1);
}
</code></pre>
<p><hr /></p>
<p><strong>Edit:</strong> Hey guys, thanks for the help, I figured it out; I don't think I have to print it as a string, I just needed to make a benchmarking framework to time it and such, but thanks again!</p>
http://stackoverflow.com/questions/353274/story-telling-building-algorithms/353292#3532921Answer by ParseTheData for Story telling/building algorithms?ParseTheData2008-12-09T16:08:04Z2008-12-09T16:08:04Z<p>This may not be what you are looking for, but have you thought of one of those story telling mechanisms that allow you to choose what happens next in a story? Its sort of a pattern and makes it more fun for the user :)</p>
http://stackoverflow.com/questions/219585/setting-multiple-jars-in-java-classpath/344818#3448180Answer by ParseTheData for Setting multiple jars in java classpathParseTheData2008-12-05T19:07:28Z2008-12-05T19:07:28Z<p>The only way I know how is to do it individually, for example:</p>
<p>setenv CLASSPATH /User/username/newfolder/jarfile.jar:jarfile2.jar:jarfile3.jar:.</p>
<p>Hope that helps!</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/313511#3135110Answer by ParseTheData for Language features you should never use?ParseTheData2008-11-24T05:53:52Z2008-11-24T05:53:52Z<p>Personally in Java I do not like do while loops, I seem to be able to use While and For loops just fine, but I wouldn't say you should NEVER use them. </p>
http://stackoverflow.com/questions/296377/generating-a-picture-graphic-of-a-graph/296388#2963880Answer by ParseTheData for Generating a picture/graphic of a graphParseTheData2008-11-17T18:18:00Z2008-11-17T18:18:00Z<p>Did you by chance check out the R programming language? I'm not positive but I believe that you can make images and such out of graphs. r-project.org</p>
http://stackoverflow.com/questions/278526/what-was-your-biggest-nix-blooper/278685#2786850Answer by ParseTheData for What was your biggest *nix blooper?ParseTheData2008-11-10T18:11:41Z2008-11-10T18:11:41Z<p>Not my biggest, but my most recent was upgrading Ubuntu to Intrepid Ibex, and leaving for the weekend. I came back and it stopped updating; I restarted the computer and I guess all the packets didn't update properly, so now it doesn't boot up correctly; if at all!</p>
http://stackoverflow.com/questions/168805/what-real-life-good-habits-has-programming-given-you/278678#2786785Answer by ParseTheData for What real life good habits has programming given you?ParseTheData2008-11-10T18:09:11Z2008-11-10T18:09:11Z<p>I'd have to say that I think more carefully than I did before, it actually encourages me to see how things work in real life, whether it be programming, nature or sports! It opened my mind to these things and I think it is really paying off; in short programming has made me more curious, without a doubt.</p>
http://stackoverflow.com/questions/361570/reading-an-xml-file-using-fileinputstream-for-java/361670#361670Comment by ParseTheData on Reading an XML File using FileInputStream (for Java)?ParseTheData2008-12-12T01:54:35Z2008-12-12T01:54:35ZWell, I wanted to be able to print out what I just read (in a string), so that it would print out both the XML and the deserialized version (in String format). Is that an easy fix? I would assume so, but when I did what you said, I got GeneralTree@af72d8 (where it was in my memory I guess)