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 ...
8
votes
3answers
1k 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)
...
6
votes
3answers
2k views
Create whole path automatically when writing to a new file
I want to write a new file with the Java FileWriter. I use it like this:
FileWriter newJsp = new FileWriter("C:\\user\Desktop\dir1\dir2\filename.txt");
Now the dir1 and dir2 currently don't exist. ...
4
votes
7answers
70 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 ...
4
votes
2answers
114 views
Writing multiline JTextArea to txt file
so I Have a JTextArea for user input and then when they click a button it writes it to a text file, I have both setLineWrap and setWrapStyleWord set to true for the JTextArea.
I would like to write ...
3
votes
5answers
1k views
PrintWriter vs FileWriter in Java
Are PrintWriter and FileWriter in Java the same and no matter which one to use? So far I have used both because their results are the same. Is there some special cases where it makes sense to prefer ...
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 ...
3
votes
8answers
4k 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 ...
3
votes
4answers
2k 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(
...
2
votes
2answers
32 views
Why is my first .nextline in the loop skipped then not skipped the next time around? and how do I stop it from overwriting?
I needed to create a basic program to input text to a .txt document so I created this but I don't see why the first question is skipped when the program is first run.
It doesn't happen if the first ...
2
votes
1answer
87 views
Assigning a custom icon to a Mac desktop element
I am writing an application in Swing that involves creating an Internet shortcut on the desktop for a particular site. It works fine in Windows. Mac allows me to create the shortcut, but does not ...
2
votes
3answers
141 views
Do I need to implement synchronized on writing data to a same file by using BufferedWriter and FileWriter?
I am working on Webmethods Integration Server. Inside there is a java service which is in form of a static java method for writing data to a log file (server.log) by using BufferedWriter and ...
2
votes
2answers
317 views
Java FileWriter only writing first line
I am working on a Java application that has a JTextArea for users to input text. It can be any amount of lines, however I am running into a problem with my FileWriter, where it's only saving the first ...
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");
...
2
votes
5answers
4k views
Java FileWriter overwrite
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 gets written. A ...
1
vote
1answer
44 views
Dynamically add .xhtml file in webapp folder
I want to dynamically add new .xhtml files in the webapp folder of my project.
It only works when i give the full path like,
FileWriter fw = new ...
1
vote
1answer
76 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
2answers
112 views
How to speed up/optimize file write in my program
Ok. I am supposed to write a program to take a 20 GB file as input with 1,000,000,000 records and create some kind of an index for faster access. I have basically decided to split the 1 bil records ...
1
vote
2answers
179 views
Java BufferedWriter performance
I need to create large test files—near 3 GB. So I try to write for start only string "1"—to check performance and correctness.
FileWriter fstream = new FileWriter("c:/out.txt");
...
1
vote
3answers
101 views
Unable to write some ascii values above to a file in java
I am writing a java code to write ASCII characters to a file. But when I try to write any character of ASCII value of more than 140 or less than 32 to a text file, I get a blank file. It does not ...
1
vote
3answers
235 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 ...
1
vote
3answers
122 views
java - Does FileWriter use a buffer? (it acts like it does in my example)
I am using FileWriter and I have noticed strange behavior.
I buffer my collection myself and every x rows I use
IOUtils.writelines(myList,"\n", writer );
It doesnt write to the file. I ...
1
vote
3answers
204 views
How do I get Java to write the contents of an ArrayList to a file once every minute?
Just a quick question about the above subject. Basically, I'm writing a piece of software which captures data from the network and writes it to an external file for further processing.
What I want to ...
1
vote
1answer
184 views
Problem with FileWriter into multiple files in Java
I'm using java with freemarker to generate HTML files through the FTL (the template file) and XML. I got the result in multiple files but each file contains the whole result. I want each file to ...
1
vote
2answers
3k views
The system cannot find the path specified with FileWriter
I have this code:
private static void saveMetricsToCSV(String fileName, double[] metrics) {
try {
FileWriter fWriter = new FileWriter(
...
1
vote
3answers
306 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
3answers
50 views
FileWriter and computing 12-hour based time in java?
I was asked to write a program that will input the employee's id number, time in and time out. The data would be written in a .txt file. I understand that im supposed to use FileWriter but might I ask ...
0
votes
2answers
77 views
How will append a utf-8 string to a properties file
How will append a utf-8 string to a properties file. I have given the code below.
public static void addNewAppIdToRootFiles() {
Properties properties = new Properties();
try ...
0
votes
2answers
37 views
Directory does not exist with FileWriter
I use FileWriter for create a file.
I have an error Directory does not exist
I think that FileWriter create the directory if it did not exist
FileWriter writer = new FileWriter(sFileName);
0
votes
3answers
71 views
Unable to write new lines to File
I have a bunch of strings that I'm writing to a file:
private void writeScoreToFile(BlastScore result)
{
try{
FileWriter fstream = new FileWriter(getFilesDir() + ...
0
votes
3answers
164 views
Unable to write to file in Android, Read-Only Filesystem
I am trying to write a file in Android.
private void writeScoreToFile(BlastScore result)
{
try{
FileWriter fstream = new FileWriter(CaptureActivity.BLAST_SCORES,true);
...
0
votes
4answers
87 views
Filewriter and spaces?
I was asked to write an assignment wherein the user would be prompted to input a key and/or a value.
So far, here is my code:
import java.util.Scanner;
import java.io.*;
class bTree
{
//Fields
...
0
votes
1answer
57 views
unable to append to file using printwriter in java
I have the following code to initialise a printwriter object--
/* This function is used to initialise the printwriter element so that it can begin the task of writing data into assignor.txt file...
...
0
votes
0answers
59 views
Saving text from a file into an array and writing the array to a different file Java
I am trying to read text from a file and turn that text into an array, and then print that array to a different file in the exact format that the text of the original file was in. I cannot use a try ...
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
1answer
73 views
How to recover a previous format of my java file in Netbeans
I was using BufferedWriter to write some text to different files as part of a code generator framework in Netbeans. when I ran the the main class for a test,I couldn't find the files of all the ...
0
votes
1answer
167 views
Java: PrintWriter
I am trying to use PrintWriter.java but I am getting a rather strange problem and I am not able to figure out what am I am missing here.
MyPrintWriter.java
public class MyPrintWriter {
public ...
0
votes
2answers
95 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
5answers
199 views
Writing Console Output to File in Java
So I was wondering if it was possible to write all the console output to a separate file outside of Java? I know about the Printwriter and Filewriter method. However, in my experience those would work ...
0
votes
2answers
294 views
java - PrintWriter with FileWriter and BufferedWriter
I'm at my wits end here.
I'm trying to print a few thousands of lines in a file, using the following:
BufferedWriter bw = new BufferedWriter(new FileWriter(fileName, true));
...
0
votes
2answers
306 views
Broken Pipe Java program writing in an external C programs stdin and reading from stdout
I am using the follwing java code to write in the stdin of a C program which basically reads from stdin adds A_A_A to the end of the line and writes it back in the stdout which the java program reaads ...
0
votes
3answers
119 views
Java Input and Output
Explain the difference between the outputs of the following two fragments of code for outputting an int i to a file:
i)
PrintWriter outfile = new PrintWriter(new FileWriter("ints.txt"));
...
0
votes
2answers
174 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
2k views
Java FileWriter - Append Line of Text File
I have a button in a GUI, and when the button is pressed the user has the ability to add information to a text file. I have this part setup fine, but the thing that is messing with me is that when the ...
0
votes
2answers
220 views
how can we write data to a file based on url?
try
{
URL url = new URL("http://localhost:8080/Files/textfile.txt");
URLConnection connection = url.openConnection();
connection.setDoOutput(true);
...
0
votes
1answer
62 views
Shift the file while writing?
Is it possible to shift the contents of a file while writing to it using FileWriter?
I need to write data constants to the head of the file and if I do that it overwrites the file.
What technique ...
0
votes
3answers
156 views
Why is my file being cleared if I don't save it?
My program is suppose to maintain a collection of Photos in a PhotoAlbum. It begins by reading a folder of photos and adds them to my PhotoAlbum. It then prints a menu that allows the user to list all ...
0
votes
1answer
353 views
Problem with Writing files using FileWriter automatically with Quartz Scheduler
I have chosen nearly 200 files to write on a position automatically on a particular time. Created a separate job names in Quartz scheduler. The job will be triggered on a time. I can read the files ...
0
votes
2answers
123 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
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();
...