R
R
roman38472014-05-04 14:00:15
Java
roman3847, 2014-05-04 14:00:15

Can I read a file line by line to force it to go to the next line?

while((s = in.readLine()) != null) {
....
Например, если в строке есть цифры, то сразу переход к след. строке.
иначе просто пишем все строки в файл.
}

How to go to next. line?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
R
Rikcon, 2014-05-04
@Rikcon

while((s = in.readLine()) != null) {
if(тут проверка на то что в строке есть цифра){
   continue;
}else{
    пишем в файл
   }
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question