Advertisement
Guest User

Untitled

a guest
Jun 19th, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. String contents = new String(bytes);
  2.  
  3. String[] parts = contents.split(" ");
  4. int partCount = 0;
  5.  
  6. for(int i = 0; i < 10; i++) {
  7. highScores[0][i] = parts[partCount];
  8. highScores[1][i] = parts[partCount + 1];
  9. highScores[2][i] = parts[partCount + 2];
  10.  
  11. partCount = partCount + 3;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement