Guest User

Untitled

a guest
Jul 16th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. String line = null;
  2. String dut_list = new String("");
  3.  
  4. do {
  5. line = read.readLine();
  6. if(!line.replaceAll(" ","").equals(""))
  7. dut_list.concat( line + " ");
  8. //dut_list = line;
  9. } while ( !line.contains("Finished") );
Add Comment
Please, Sign In to add comment