i wanna read a txt file by line, and get the different value
example :
file.txt
you and me
me and you
you and me
with 3 lines in that file, i want get the value just you and me and me and you
please ...
|
Go4Expert Member
|
|
| 26Oct2009,14:19 | #1 |
|
Hey advance,,, please help ...
i wanna read a txt file by line, and get the different value example : file.txt you and me me and you you and me with 3 lines in that file, i want get the value just you and me and me and you please ...
|
|
Light Poster
|
|
| 6Nov2009,07:17 | #2 |
|
here's the codes you needed just edit it for your self
and i know that it will help you and you can do it after i post it Code:
FileWriter key = new FileWriter("File");
BufferedWriter kbd = new BufferedWriter(key);
BufferedReader k = new BufferedReader(new InputStreamReader(System.in));
System.out.println("Input: ");
String input = k.readLine();
kbd.write(input);
kbd.close();
//kbd.write("The");
//kbd.write(" Zombie");
//kbd.write(" Is there");
//kbd.write(" NOW");
this are to write just change the write to read if u want that ur prog will read the txt file that u made. btw, thank me if i helped you if not its up to you :P |
|
Go4Expert Member
|
|
| 8Nov2009,16:53 | #3 |
|
Take it!
Code: Java
Last edited by SaswatPadhi; 8Nov2009 at 18:03.. Reason: Changed PHP tag to CODE tag |
|
Light Poster
|
|
| 11Nov2009,09:33 | #4 |
|
LOL! your codes are more complicated than my post
|