class A {
public static void main(String args[]) throws Exception {
FileInputStream fis = new FileInputStream("c:/aaa/b.txt");
byte[] buffer=new byte[fis.available()];
fis.read(buffer);
System.out.print(new String(buffer));
}
}
ex) 바이트수 반환
class A {
public static void main(String args[]) throws Exception {
FileInputStream fis = new FileInputStream("c:/aaa/b.txt");
byte[] buffer=new byte[fis.available()];
int n=fis.read(buffer); //전체 바이트 수를 반환
System.out.print(n);
}
}
'개발하자 > JAVA중급' 카테고리의 다른 글
파일에 문자 쓰기 (0) | 2015.01.31 |
---|---|
FileDialog 파일내용 불러오기(자원해제도) (0) | 2015.01.31 |
파일내용 읽어오기(영어만가능) (0) | 2015.01.31 |
System.in.read() (0) | 2015.01.31 |
서버&클라이언트 부분 기본소스 (0) | 2015.01.30 |