Advertisement
Guest User

Untitled

a guest
Jun 11th, 2016
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public String crab() throws FileNotFoundException{
  2. File f = new File("C:/Users/dns/Desktop/аыва.txt");
  3. Scanner scn = new Scanner(f);
  4. String cont = new String();
  5. while(scn.hasNext())
  6. cont+=scn.nextLine()+"\n";
  7. scn.close();
  8. return cont;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement