| Author |
read line by line from file
|
mahdi farzami
Ranch Hand
Joined: Nov 21, 2009
Posts: 32
|
|
Hi , how can i read a file line by line ???
i want to save each line in slot of String array
i write this code but it`s return all of file !!!
please help me to change this code
thanks
|
 |
Gopinath Karyadath
Ranch Hand
Joined: Oct 14, 2009
Posts: 87
|
|
Dear friend
String des=""
Vector vector = new Vector ();
while ((ch = isr.read()) > -1) {
buffer.append( (char) ch ) ;
des+= (String) (char) ch ;
if ( (char) ch == '\n' ) {
vector.addelements(des) ;
des = "" ;
}
}
regards
|
 |
 |
|
|
subject: read line by line from file
|
|
|