Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. while((data=bis.read()) != -1){
  2. inString += (char)data;
  3.  
  4. if (((char)data) == 'n') {
  5. System.out.println("SLAVE : " + inString);
  6. inString = "";
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement