Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. static void filter( BufferedReader orders, BufferedReader in, BufferedWriter out ) throws IOException{
  2. String linha = in.readLine();
  3. String ordem
  4. String [] ordem;
  5.  
  6.  
  7.  
  8. while (linha != null){
  9. while (!linha.equalsIgnoreCase(ordem)){
  10. linha = in.readLine();
  11. }
  12. out.write(linha);
  13. out.newLine();
  14. linha = in.readLine();
  15. }
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement