Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. public String getLyrics(int num) throws IOException {
  2. String lyrics = "";
  3.  
  4. Scanner input = new Scanner(new File("/Users/philip/AndroidStudioProjects/LSMHymns2/app/src/main/res/raw/hymn" + num + ".txt"));
  5. while (input.hasNextLine()) {
  6. String line = input.nextLine();
  7. lyrics += line;
  8. }
  9. return lyrics;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement