Current Forum: 15-211 Main Forum |
Date: Sat Oct 13 2001 11:57 am |
Author: Lee, Peter <petel@cmu.edu> |
Subject: Re: how to write a file |
|
|
Exactly how you do this depends on the format you want for the output file. For general info on I/O in Java, go to the External Links section and click on the Java API documentation. Then, click on the java.io package.
From there, you will see a lot of different classes for doing file I/O. If you want to output human-readable strings, you might look at the StringWriter class. |
|