The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
0answers
23 views

Writing attributes to a single file from different forms without overwriting

I have been trying to write few attributes which are in different forms to a single file.the code will work in a single click.But its working differently then expected. The file only shows the attr ...
1
vote
1answer
49 views

how to write to a text file without overwriting?

I am in a deadlock as to how to write the attributes in a form to a text file in java. I know there are many answers to this but i couldn't find any solution to the problem that i am facing. While ...
0
votes
1answer
23 views

Creating JSPs with JspWriter?

I would like to generate JSP, depending on how many entries a user has written. For example, I'd like to display 3 entries per page, if the user types in more, two JSPs should be generated. I was ...
0
votes
2answers
43 views

Saving array into the file (Java)

I need to solve such task: Randomly generate the length of the array - save this int into file ("input.txt)" as a first digit; Randomly generate array elements - save each element into the file ...
1
vote
3answers
24 views

Java: PrintWriter object not detected

I am having some trouble getting java to recognize my PrintWriter object 'out'. I'm not really sure what the problem is. public void storeInput(String fileName) { String folderName = ...
0
votes
1answer
37 views

Display online users from server to all connected clients

I'm building simple socket server-client application consisting of: Server project (which creates new client handler thread when socket is accepted) and a Client project (which establishing ...
0
votes
2answers
23 views

Append to a File

I am trying to write a java program that appends the current date and time of the system to a log file (that gets run by a batch file at my computer startup). Here's is my code. public class ...
0
votes
3answers
37 views

PrintWriter vs FileWriter in the following context [duplicate]

What if in the next bit of code I am going to substitute (new FileWriter with (new PrintWriter pw = new PrintWriter(new BufferedWriter(new FileWriter ("xanaduindeed.txt"))); pw = new ...
0
votes
1answer
29 views

RSA Decryption Printing NULL

I believe I am doing this right. How I see decrypting a file with RSA: Read in each line of the file as a String Set cipher.init(Cipher.DECRYPT_MODE, privateKey) Convert String to char[] using ...
0
votes
4answers
45 views

Why is my ArrayList not being saved to my file?

Why is ArrayList not being written into "MyCalendar.txt"? Even when I use out.write() it still returns false but does not write to the file. import java.util.*; import java.io.*; public static ...
-6
votes
2answers
31 views

why do i need catch the IOException in PrintWriter [closed]

is it a rules ? The netbean said that unreported exception IOException; must be caught or declared to be thrown
0
votes
1answer
61 views

PrintWriter to write to CSV - New line not working?

I've tried just about everything I could find online and on this particular site and none of these options are working. I'm looping through a list of objects and creating a CSV file. I'd like to break ...
3
votes
2answers
103 views

How to print commas to a .csv file using PrintWriter in Java?

I have problems printing text to a .csv file. My String has a comma in it, and i end up printing it to TWO cell instead of ONE. Here is the code: String companyName1 = "Edison Corporation, LLC co"; ...
0
votes
3answers
143 views

Writing from Java to an XML document - Simple

I know there's tons of questions on writing from Java to XML on stackoverflow, but it's all too complex. I feel I have a very simple problem that I just can't figure out. So I have a program that ...
4
votes
6answers
141 views

FileWrite BufferedWriter and PrintWriter combined

Ok so I am learning about I/O, and I found the following code in one of the slides. can someone please explain why there is a need to have a FileWrite, BufferedWriter and PrintWriter? I know ...
-1
votes
2answers
55 views

cannot write in the file [closed]

good day guys, im creating a program that will write the data to a text file. the data is coming from an array list, it is a data that is solved from the array list e.g : public double ...
1
vote
3answers
98 views

FileNotFoundException solution?

Creating a program that will write the data from the array list to text file and I'm experiencing this FileNotFoundException even though the file exists. At the same time the computed data from my ...
-1
votes
2answers
165 views

PrintWriter not writing to or creating text file on Windows 7 [closed]

I'm trying to do an exercise from a book in the public domain, Murach's JSPs and Servlets. I'm having little luck with a file called EmailList.txt that is supposed to have some input printed into it. ...
0
votes
2answers
171 views

A simple java client server program

So I did this client server program in java for my college mini project. Note that this is just a small module of a big project I'm working on. I need a string to be sent from the client to the ...
1
vote
3answers
117 views

how to clear contents of a PrintWriter after writing

Good evening, i want to know how to clear the data written to a PrintWriter, i.e. is it possible to remove the data from a PrintWriter after printing? here in this servlet i print some text to the ...
0
votes
2answers
31 views

PrintWriter default location

I'm trying to write to a file. The code runs without an error, but I can't find the file anywhere. Not in the execution path, desktop, home folder, root folder. Of course I could specify absolute ...
0
votes
3answers
211 views

Java server-client readLine() method

I have a client class and a server class. If client sends message to server, server will send response back to the client, then client will print all the messages it received. For example, If ...
1
vote
2answers
207 views

PrintWriter or any other output stream in Java do not know “\r\n”

I have trouble using PrintWriter or any other output stream to send message between server and client program. It works properly if I use println("abc") to communicate, but it does not work if I use ...
0
votes
3answers
72 views

Writing and copying Text files

I have an assignment to :write a program that reads a file and writes a copy of the file to another file with line numbers inserted. I am not sure what to do at the end of the code at the "for(int i ...
0
votes
2answers
63 views

PrintWriter to print on next line

I have the following code to print a string(from a ResultSet) to a text file: PrintWriter writer = new PrintWriter(new FileOutputStream(file, false)); while(RS.next()) { ...
0
votes
3answers
142 views

PrintWriter not printing texts to .txt file

This program asks for the output filename and seems to work good. Until I try to open the output file with a text editor or terminal. Then I don't see anything in that file just blank file. This ...
0
votes
1answer
127 views

Using a PrintWriter and File Object to Write to an Output File

I have a JFileChooser object used to get a data file from the user. What I need to do is create a File object and PrintWriter object so that I can write to a file named "output.txt". The file should ...
-1
votes
3answers
57 views

Output stream doesn't print anything

public class Demo { public static void main(String[] args) { PrintWriter outputStream= null; try { outputStream = new PrintWriter (new BufferedWriter(new ...
0
votes
2answers
74 views

How to write back from top using PrintWriter in JAVA?

Using PrintWriter to write to a txt file. But now I have a problem: Can I write from the top line after I write some lines? For example, I have write: PrintWriter out = new ...
2
votes
2answers
107 views

Thread keeps hanging on Socket / Printwriter interaction

My program runs for a while (about 20 seconds) after that it sends fewer and fewer messages until it stops. I've made a Thread dump and it points me to the following line of code where the thread ...
0
votes
2answers
87 views

Print Writer does corrupt files when its used to upload files to a server

Good Evening, today i faced a strange situation when i used Print Writer in uploading files to a server, the file is transferred i tried to use FileOutPutStream instead and it solves the problem, my ...
0
votes
2answers
253 views

Vb.net PrintWriter prints nothing

I'm developing an application in vb.net. The output form is shown below. It has a PRINT button to print the components in the form. I mean it should print the entire form when I click the print ...
0
votes
3answers
83 views

How do I convert a response from a servlet to a String?

Sorry to bust up your day with this, but I’ve spent ages trawling the web for an answer and I’m completely stuck! In a web app, I’m using RequestDispatcher to send a request from servlet_A to ...
2
votes
3answers
116 views

Difference between FileOutputStream and PrintWriter

I am implementing SSL certificate and key in my application. I have created private key using CertAndKeyGen class. I am trying to encrypt the private key with a password, which I have achieved it ...
0
votes
4answers
182 views

PrintWriter add text to file

In my online computer science class I have to write a program to determine the surface gravity on each planet in the solar system. I have gotten almost every aspect of it to work save one. I need to ...
0
votes
2answers
111 views

Java PrintWriter Not Ejecting Printer Paper

I am trying to test printing from a Java program. I currently have Socket s = new Socket(printer_ip, 9100); PrintWriter pw = new PrintWriter(s.getOutputStream()); pw.println("This is a print ...
0
votes
4answers
144 views

Java create a class to print ArrayList to file

Here is the code I have. This is my PrintToFile class import java.util.*; import java.io.*; public class PrintToFile{ File f; FileWriter fw; PrintWriter pw; public void ...
0
votes
5answers
104 views

Java Trying to create a class to print ArrayList to File

So I have an ArrayList of objects that I would like to print to file. I have a PrintToFile class, and in another class I have an ArrayList<Expenses> expList Here is my PrintToFile class ...
2
votes
2answers
316 views

PrintWriter: reading and writing to the same file - file appears not to be saved before being opened again

I am trying to create a program which will write new data to a save file. The file has three "slots", that is, three Strings separated by delimiters. The main program calls the saver program with ...
0
votes
2answers
82 views

failing to save data in a text file

I'm trying to make a class that takes info from the GUI this saves it to a text file which I use as my "Database" but for some reason the PrintWriter object doesn't write the new data in the file. ...
0
votes
1answer
45 views

Not writing in Unicode when exported

So I have a programm that is supposed to write text, which uses unicode, to a file. Everythhing works when I do it through Eclipse, but not when exxported. Here is what it looks like when I do it ...
0
votes
1answer
97 views

PrintWriter not printing out complete string

I have the following code FileWriter F = new FileWriter("out.txt"); PrintWriter H = new PrintWriter(F); H.print(split[split.length - 2]); H.print("END"); When I examine the txt however, the last ...
1
vote
2answers
279 views

PrintWriter not writing to file, tried adding flush() and close() Java

Tried to write to a file. Did my research, made sure to flush and close. I thought that perhaps it was reading the message box blank and was writing nothing, but did a System.out.println to make sure ...
1
vote
0answers
113 views

KeyTyped being called twice in this code?

There is a bug somewhere here. For some reason, when I am sending the message to the server, every message is received twice for any single keystroke! for instance, i type "a", and the server receives ...
1
vote
2answers
179 views

PrintWriter not writing to file (Java)

I am writing a kind of a cash machine program that will output the data into a file (Yes, I know its not in English, but that's not the point) and I am experiencing an error. When I try to use ...
0
votes
0answers
140 views

Java Export to CSV - Replace HTML Entity

I am using Java to export one CSV. Its a lotus notes based app, and I am writing the output to the output printwriter object. pw.println("Content-Type: text/text; charset=iso-8859-1"); ...
2
votes
3answers
129 views

Blank file after writing to it?

So I have been trying to write a Bukkit plugin for a friend of mine, and for some reason the config generation is not working. The code in question is below, and I will be happy to add any code that ...
0
votes
0answers
263 views

PrintWriter doesn't flush immediately, even with autoFlush

I have a Java server that appends certain information from multiple clients to a single file. So I am creating a FileWriter with append=true, and a PrintWriter with autoFlush=true. However, when I ...
0
votes
2answers
252 views

PrintWriter vs DataOutputStream

I am new to Android Development just want to know what is different between DataOutputStream and printwriter?
1
vote
1answer
54 views

PrintWriter different from regular printing

String[] strarray = new String[dataLine.size()]; strarray = dataLine.toArray(strarray); PrintWriter pr = new PrintWriter("test.txt"); for (int i=0; i<strarray.length; i++) { ...

1 2 3 4