Guest User

Untitled

a guest
Oct 19th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. public static void loadAccounts() throws IOException {
  2. BufferedReader br = new BufferedReader(new FileReader(TEXT_FILE));
  3. String line;
  4. while ((line = br.readLine()) != null) {
  5. System.out.println(line.substring(0, line.indexOf(" - ")) + "; "
  6. + line.substring(line.indexOf(" - ") + 3, line.length()));
  7. accounts.put(line.substring(0, line.indexOf(" - ")),
  8. line.substring(line.indexOf(" - ") + 3, line.length()));
  9. }
  10. }
Add Comment
Please, Sign In to add comment