import java.io.*;
public class Main{
public static void main(String[] args){
try{
File file = new File("D://lady_gaga.jpg");
FileInputStream input = new
FileInputStream(file);
FileInputStream(file);
int biner = 0;
while(biner!=-1){ // -1 is end of file
biner = input.read();
System.out.print(biner);
}
}catch(Exception ex){
ex.printStackTrace();
}
}
No comments:
Post a Comment