Tagged Questions
The bufferedwriter tag has no wiki summary.
4
votes
5answers
74 views
In Java, what is the difference between using a BufferedWriter or writing straight to file? [closed]
Possible Duplicate:
In Java, what is the advantage of using BufferedWriter to append to a file?
The site that I am looking at says
"The BufferWriter class is used to write text to a ...
4
votes
1answer
194 views
Why default buffer size is 8k in Java IO?
The default buffer size is 8k in BufferedWriter of somewhere else. Why use 8k? Does larger buffer size improve the performance?
4
votes
2answers
273 views
Java - comparing string in ArrayList to all text in .txt file
The actual problem will be addressed a bit further down :), thanks.
I'm fairly new to Java (nearly through a 400 page book).
I'm not really that familiar with the API yet.
This is my best shot at ...
3
votes
1answer
32 views
copying the content of two linkedlists into a text file in java
I have two linkedlists A1 and A2, both contain very long strings.
I want to paste these strings for both linkedlists in one file
i am using this function:
private static void append(LinkedList A1, ...
3
votes
1answer
609 views
Android - Persist file when app closes
I am creating a file in my Android application as follows:
HEADINGSTRING = new String("Android Debugging " + "\n"
"XML test Debugging");
}
public void setUpLogging(Context ...
3
votes
8answers
1k views
Java BufferedWriter close()
assume that I have the following code fragment
operation1();
bw.close();
operation2();
When I call BufferedReader.close() from my code, I am assuming my JVM makes a system call that ensures that ...
3
votes
1answer
3k views
Java BufferedWriter, OutputStreamWriter able to write to closed FileOutputStream
I was expecting the following code to throw an exception when I goto write data to the Stream:
File file = new File("test.txt");
FileOutputStream fs = new FileOutputStream(file);
OutputStreamWriter ...
2
votes
1answer
83 views
Java BufferedWriter Write method
I am creating a CSV file using BufferedWriter from a ResultSet object. A few of the database columns hold null values.
When I call obj.write(rs.get()) I am getting a NullPointerException when the ...
2
votes
3answers
145 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
4answers
3k views
Update text file with BufferedWriter
I am writing to a text file using a BufferedWriter but the BufferedWriter does not write to the file until the program I'm running is finished and I'm not sure how to update it as the BufferedWriter ...
2
votes
3answers
3k views
java : writing large files?
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 ...
1
vote
1answer
85 views
Java: BufferedWriter mixing up lines only first time [closed]
It's probably easiest to explain by giving the working code so the link is here:
http://www.mediafire.com/?qfsxskt229sm0vc
It's a Netbeans project. Here's the offending code:
for (int i = 0; i ...
1
vote
0answers
46 views
How to use a BufferedWriter in Python?
I am facing the following problem: I'm trying to implement a simulator for supply chains. These will produce a lot of EPCIS Events (events that occur at RFID readers). These events should then be ...
1
vote
1answer
48 views
Java buffered writer wont write all data
public static void save()
{
BufferedWriter out = null;
try
{
out = new BufferedWriter(new OutputStreamWriter(Gdx.files.external(file).write(false)));
...
1
vote
1answer
68 views
Java - Do not overwrite with bufferedwriter
I have a program that add persons to an arraylist. What I'm trying to do is add these persons to a text file as well but the program overwrites the first line so the persons get erased.
How do I tell ...
1
vote
2answers
70 views
What is memory effects of bufferedwriter close() & flush() methods?
I am quite confused here. I am preparing to SCJP, I wrote a small recursive to check BufferedWriter memory allocations before|after flush() & close() methods. Please see below code block, I have ...
1
vote
3answers
41 views
How can I format the data written to a text file to be done in columns?
Hi I have a bunch of data Im writing to a text file, each line of the rows holds about 4 different pieces of data, I want to make it so that each type is data is aligned in rows.
Here is the line ...
1
vote
1answer
77 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
1answer
69 views
Is there a pattern for re-using a BufferedWriter?
I am reading XML files from a directory (containing thousands of files), processing the content and writing one output file for each input file. Is there a way of 're-pointing' an existing ...
1
vote
2answers
180 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
4answers
432 views
in what way is java.net.Socket threadsafe?
I have a Socket that I am both reading and writing to, via BufferedReaders and BufferedWriters. I'm not sure which operations are okay to do from separate threads. I would guess that writing to the ...
1
vote
3answers
2k views
Java - how do I write a file to a specified directory
I want to write a file results.txt to a specific directory on my machine (Z:\results to be precise). How do I go about specifying the directory to BufferedWriter/FileWriter?
Currently, it writes the ...
1
vote
2answers
180 views
FileNotFoundException problem
I've just finished reading 'Java for Dummies' and have begun to create a simple POS program. I have been having trouble getting the program to do what I want it to do! I have two actionListeners ...
1
vote
2answers
108 views
Is there a Java equivalent to unputc?
I have a BufferedWriter to which I use to write characters into a PipedInputStream. Based on keyboard events. But I am implementing a backspace handler, but I can see no way of doing so without ...
1
vote
3answers
1k views
Character corruption going from BufferedReader to BufferedWriter in java
In Java, I am trying to parse an HTML file that contains complex text such as greek symbols.
I encounter a known problem when text contains a left facing quotation mark. Text such as
mutations to ...
1
vote
1answer
109 views
Effect of frequent sdcard writes
In my chat app, I am adding the ability to log chats. The logs are saved on the sdcard and one BufferedWriter is kept open for every person/channel chat is done with. I'm wondering what effects this ...
1
vote
4answers
410 views
Deferring BufferedWriter.write to another thread
I have an event processing scheme which should also eventually write to file; I cannot afford to delay the event when the file is being flushed, i.e. waiting to the end of ...
0
votes
3answers
170 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
2answers
69 views
Error while writing a big string on a socket ?
Hello all my friends,
I am trying to send a long string through socket connection but I have them in two parts so I get an error while doing my processs.
In client I am sending the file,
...
0
votes
1answer
107 views
Bufferedwriter not saving *everything* to file
I am somewhat new to java and was hoping that someone could help me. I have looked everywhere, but cannot seem to finder a solution.
I'm trying to save the result of a method into a file using ...
0
votes
4answers
227 views
BufferedReader to BufferedWriter
How can I obtain a BufferedWriter from a BufferedReader?
I'd like to be able to do something like this:
BufferedReader read = new BufferedReader(new InputStreamReader(...));
BufferedWriter write = ...
0
votes
4answers
115 views
When should I close() a BufferedWriter?
I'm appending a line to a textfile each time a button is pressed. Currently I'm doing this each time the button is pressed:
...
try {
BufferedWriter bw = new BufferedWriter(new FileWriter(f, ...
0
votes
2answers
143 views
BufferedWriter doesn't send text unless stream is closed
I have a server that communicates with a client.
The server is multithreaded, and this thread is created with the socket and a bufferedreader connected to the socket, when the first line read from ...
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
3answers
187 views
Java: can't save in UTF-8
I have this line of code in java:
new BufferedWriter(new OutputStreamWriter(new FileOutputStream(name, append), "UTF-8"));
This writer does not write an UTF-8 file, because when I open it in ...
0
votes
4answers
74 views
bufferwriter not writing to file
The bufferwriter is not writing to a file. Please can anyone tell me what could be the issue
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import ...
0
votes
2answers
297 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
1answer
101 views
File gets overwritten on program restart Android
I am trying to write out some data to a file. However, every time I restart my program, I think it is overwriting the original file (making a new one?) Here is a snippet of code where I instantiate ...
0
votes
0answers
153 views
Create a GUI for .jar file, OutputStream not accepting input!
I usually start this one Java program with a .bat file on my computer. Calling it with a number of parameters, it looks something like this: java -Xincgc -jar program.jar arg0
I successfully created ...
0
votes
4answers
242 views
Sending big String over BufferedWriter
is there some problem sending a big String (5Mb, one xml file, all i one line) with a BufferedWriter?
It works very fast. Is there some golden rule disallowing lines longer than a few K? Then I would ...
0
votes
2answers
486 views
Android writing to a text file
I have a text file within my raw folder of my app that I intend to use as a simple way to save settings and then read them back when needed. I can read from this file with using the BufferedReader ...
0
votes
1answer
120 views
Buffered classes and sending/receiving data
In the following question are the bytes handled by the Buffered classes such that the File is implicitely cut up into smaller blocks or are the bytes sent all in one go?
how to achieve transfer file ...
0
votes
1answer
185 views
Java writing to file misbehaving
This is yet another of my Java questions.
Please take a look at this code:
public static void main(String[] args) {
if( args.length != 5) {
System.out.println("Error. Wrong number of ...
0
votes
1answer
189 views
Android Write files
I write file to sdcard using BufferedWriter.After that I want to overwrite header of file,but other data must be without changes( In the header I must add size of file). So I think I must change ...
0
votes
1answer
347 views
BufferedWriter#write(int) javadoc query
The Javadoc for this says:
Only the lower two bytes of the integer oneChar are written.
What effect, if any, does this have on writing non-utf8 encoded chars which have been cast to an int?
Update:
...
0
votes
2answers
766 views
java bufferedReader, writes something different than it reads
i parsed a text (CAL code) with BufferedReader and BufferedWriter in Java, unfortunately, lines which i red and wrote with outStream.write(line); have changed, please look at Screenshots:
...
0
votes
3answers
3k views
Formatting a double output using BufferedWriter in Java
I'm working on an assignment, and have completed the code, however I am having an issue with correct formatting of the output. I am taking a text file, separating the products based by price, and ...
-1
votes
1answer
79 views
Java How To Read A Specific Line
I want help myself, I made a file that would create a user file, because I plan on making a game. It has a login that writes the Login name, the Display name, and the Password. It writes it out to a ...
-1
votes
2answers
111 views
BufferedWriter and socket in java, write has no effect
I'm writing a small client application to communicate with a server. I open a socket between my client and the server and can read anything that goes out from the server with a BufferedReader. This is ...
-1
votes
2answers
1k views
why is bufferedwriter not writing in the file?
Here is the code snippet.
read = new FileReader("trainfiles/"+filenames[i]);
br = new BufferedReader(read);
while((lines = br.readLine())!=null){
...