Tagged Questions

8
votes
4answers
234 views

Java - How to detect file deletion while writing to a file?

Our java program writes some important data into a file continuously. Now we want to thrown some exception or display some kind of error message on the console whenever the file (to which the java ...
3
votes
3answers
296 views

Java I/O: How to append to an already existing text file

Hi I am having no problem writing to or appending to a file, the only problem is that as soon as I quit the program and then run it again, it creates a new file overwriting my original file. This is a ...
2
votes
2answers
1k views

Writing to an already existing file using FileWriter Java

Is there anyway I can write to an already existing file using Filewriter For example when the user clicks a submit button: FileWriter writer = new FileWriter("myfile.csv"); ...
0
votes
2answers
99 views

Issue with FileWriter

I'm running my java application on a windows 2008 server (64-bit) in the hotspot vm. A few months ago I created a tool to assist in the detection of deadlocking in my application. For the past month ...
0
votes
2answers
96 views

Error when trying to compile the program

I'm trying to run this code taken from Sun Java site (I didn't copy it, Looked at it and wrote it as it would help me to remember the code). import java.io.FileReader; import java.io.FileWriter; ...
0
votes
1answer
471 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(); ...