Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.io.*;
- public
- class Zadania23{
- public static void main(String[] args){
- System.out.println("Poczatek");
- File file = new File ("C:\\Users\\Maciek\\Desktop\\1.txt");
- FileInputStream fis = null;
- try {
- fis = new FileInputStream(file);
- while (fis.read() != -1){
- System.out.print(fis.read());
- }
- } catch (IOException e){
- e.printStackTrace();
- }
- System.out.println("Koniec");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment