Guest User

Untitled

a guest
Jan 6th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. import java.io.*;
  2.  
  3. public
  4. class Zadania23{
  5. public static void main(String[] args){
  6.  
  7. System.out.println("Poczatek");
  8. File file = new File ("C:\\Users\\Maciek\\Desktop\\1.txt");
  9. FileInputStream fis = null;
  10. try {
  11. fis = new FileInputStream(file);
  12. while (fis.read() != -1){
  13. System.out.print(fis.read());
  14. }
  15. } catch (IOException e){
  16. e.printStackTrace();
  17. }
  18. System.out.println("Koniec");
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment