Results 1 to 4 of 4
Thread: Quick! Writing to text file.
- 02-19-2013, 06:40 AM #1
Member
- Join Date
- Feb 2013
- Posts
- 3
- Rep Power
- 0
Quick! Writing to text file.
Hello, so I'm trying to write to a text file. Each time I run the program any previous data in the text file gets deleted.
Everything was declared above. Currently fileName input is "x" without quotes
Java Code:fileName = JOptionPane.showInputDialog("Please Input File Name with .txt extension: "); filex = new File(fileName+".txt"); BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(filex)); if(filex.exists()){x=1; System.out.println("aaaaaaa");} if(!filex.exists() && filex.getName()!=null && filex.getName()!=""){filex.createNewFile();JOptionPane.showMessageDialog(null, "File Didn't exist. File Created!");} if(filex.getName()==""){System.exit(0);}
- 02-19-2013, 09:36 AM #2
Re: Quick! Writing to text file.
Math problems? Call 1-800-[(10x)(13i)^2]-[sin(xy)/2.362x]
The Ubiquitous Newbie Tips
- 02-19-2013, 07:22 PM #3
Member
- Join Date
- Feb 2013
- Posts
- 3
- Rep Power
- 0
Re: Quick! Writing to text file.
WELL...I feel stupid! Thanks a lot!!!! adding ,true solved it.
- 02-20-2013, 08:55 AM #4
Re: Quick! Writing to text file.
You're welcome. You can't know every method signature in the API docs :)
Math problems? Call 1-800-[(10x)(13i)^2]-[sin(xy)/2.362x]
The Ubiquitous Newbie Tips
Similar Threads
-
Reading from a text file, then writing back to Text Area in Reverse
By medic642 in forum New To JavaReplies: 8Last Post: 07-17-2011, 02:38 PM -
Writing Text To A File
By loopsnhoops in forum New To JavaReplies: 15Last Post: 06-01-2011, 03:27 AM -
Writing into a text file
By africanhacker in forum New To JavaReplies: 3Last Post: 03-31-2011, 10:44 PM -
Im writing to a file and i want to skip lines while writing to a text file.
By Broden_McDonald in forum New To JavaReplies: 1Last Post: 02-27-2010, 01:29 AM -
writing text to file
By notwist in forum New To JavaReplies: 3Last Post: 04-25-2008, 04:20 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks