java : writing large files ?

Posted by umanga on Stack Overflow See other posts from Stack Overflow or by umanga
Published on 2010-01-07T02:38:24Z Indexed on 2010/03/27 21:43 UTC
Read the original article Hit count: 439

Filed under:
|
|

Greetings , I get huge number of records from database and write into a file.I was wondering what the best way to write huge files. (1Gb - 10Gb).

Currently I am using BufferedWriter

BufferedWriter mbrWriter=new BufferedWriter(new FileWriter(memberCSV));
while(done){
 //do writings
}
mbrWriter.close();

© Stack Overflow or respective owner

Related posts about java

Related posts about javaio