Tagged Questions

4
votes
7answers
90 views

Java text file size (before file is closed)

I am collecting full HTML from a service that provides access to a very large collection of blogs and news websites. I am checking the HTML as it comes (in real-time) to see if it contains some ...
1
vote
1answer
80 views

Creating file in java

This may sound easy but I when debugging through this code it just stops debugging, can't work out if its throwing an exception or not. What am I doing wrong? Writer output = null; File file = new ...
1
vote
3answers
253 views

Java File object's renameTo method deletes my file instead of renaming it. Vistax64

Trying to take one mp3 file and rename it using a string variable. For example, I have a classical music folder, C:/classical, and I want a song called vivaldi renamed to FourSeasons. I want to find ...
0
votes
3answers
34 views

Finding files dynamically

I want to be able to repeat an action for every file in a directory. This is my current code File file = new File("res\\thing.csv"); BufferedReader reader; try { reader = new ...
0
votes
2answers
184 views

What Exception to use for FileWriter

I have a program that allows a user to write information to a file. It doesn't write over everything in the original file, but adds to it. The thing is if the user doesn't enter enough info the ...
0
votes
2answers
129 views

How can i handle this Error in FileWriter?

I have a problem please guide me :) I write this method : public void createTempFile() throws Exception{ //CHTYPE & FINAL are Vector File file = ...
0
votes
1answer
483 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(); ...