Tagged Questions

3
votes
8answers
154 views

flush in java.io.FileWriter.

I have a question in my mind that, while writing into the file, before closing is done, should we include flush()??. If so what it will do exactly? dont streams auto flush?? EDIT: So flush what it …
1
vote
4answers
254 views

Java FileWriter overwrite

Hi Everyone, I have a piece of code that generates new data whenever there is new data available as InputStream . The same file is overwritten everytime. Sometimes the file becomes 0 kb before it …
4
votes
3answers
130 views

(java) Writing in file little endian

I'm trying to write TIFF IFDs, and I'm looking for a simple way to do the following (this code obviously is wrong but it gets the idea across of what I want): out.writeChar(12) (bytes 0-1) …
-1
votes
4answers
136 views

Why is nothing being written to a file?

I am creating and writing to a file using the following pattern: File afile = new File("C:/dev/ws/DataOrdering/data/" + thisDate + "_" + thisTime + "_visdata.csv"); FileWriter writer = new …
1
vote
3answers
154 views

IOException on DataGridView writing to text file C#

Good morning all, I'm having a few problems with a method in my C# code that should enable a DataGridView to be saved to a .txt file. The code is as below: private void saveToTxt_Btn_Click(object …
2
votes
4answers
303 views

Java FileWriter

I'm currently using FileWriter to create and write to a file. Is there any way that i can write to the same file every time without delete the contents in there? fout = new FileWriter( …
0
votes
1answer
202 views

Can I use Scanner class in text file for getting information??

this code is correct?? String note = "text.txt"; FileWriter file = new FileWriter(note); Scanner sc = new Scanner(System.in); System.out.println("Enter your name:"); String name = sc.next(); …
1
vote
3answers
133 views

Is it ok to use same file writer for writing different files

There's a loop where we get certain data. Depending on the data, file writer needs to write to different files. Is it a good practice?
0
votes
2answers
122 views

Java FileWriter help

Okay... so I have a fairly interesting error... I declare a FileWriter called file, and I have it go through the following for loops: for (int i = 0; i < a.radtot; i++) { file.write("" + i * …
0
votes
4answers
286 views

Read & Update filestream

I have a little utility that does a search of a number of files. I had to create it because both Google & Windows desktop searches were not finding the appropriate lines in files. The searching …