Viet Nguyen

Greenhorn
+ Follow
since Dec 14, 2002
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Viet Nguyen

I think you need a Printwriter in the try and catch block to print the results to the .txt files
for Example
{
try{
PrintWriter out = new PrintWriter(new FileWriter(outFile.txt));
All you codes goes here.
}catch(IOException e)
{
}
out.flush();
out.close();
System.out.println("finished");
}
21 years ago