I am trying to generate a line of 10000 random number and store it in a file. I go on adding new random numbers to the line separated by spaces. But after few iterations, the appended string becomes empty(?), it doesn't show up when I try to print the line on console using System.out.println, and nothing is written into the file. The code works absolutely fine for n=10, n=100, n=1000.
Find below my code
import java.io.BufferedWriter;
import java.io.FileWriter;
public class RandomNumber {
public static void main(String[] args) {
try {
int n = 10000;
String line = ""; // Have tried StringBuilder too, doesn't help
for (int i = 0; i < n; i++) {
int temp = (int) Math.ceil((Math.random() * n));
line = line+temp+" ";
System.out.println(line);
}
FileWriter fstream = new FileWriter("input" + n + ".txt");
BufferedWriter out = new BufferedWriter(fstream);
out.write(line);
out.close();
} catch (Exception e) {
System.err.println("Error: " + e.getMessage());
}
}
}
edit: I have removed the for loop used for out.write, it was not necessary. I had used it when I had used a String array.
System.out.println("fle name is :: input" + n + ".txt");beforeFileWriter fstream = new FileWriter("input" + n + ".txt");and see what path you get and try to open that file – Fahim Parkar Dec 1 '12 at 8:29