E D R , A S I H C RSS

BackLinks search for "FileInputStream"

BackLinks of FileInputStream


Search BackLinks only
Display context of search results
Case-sensitive searching
  • JavaNetworkProgramming
          *이장에서는 FileOutputStream과 FileInputStream에 관해 다루고 있다.
          *FileOutputStream과 FileInputStream은 파일에 대한 바이트 기반의 스트림 엑세스를 제공하는 2개의 표준 클래스이다.
          *FileDescriptor클래스 : FileDescriptor 객체는 하위 레벨의 시스템 파일 설명자로의 핸들이다. 파일 설명자는 열려진 파일을 의미하며, 읽기 작업이나 쓰기 작업을 위한 현재의 파일 내의 위치와 같은 정보들을 포함한다. RandomAccessFile이나 FileOutputStream, FileInputStream을 사용하지 않고는 유용하게 FileDescritor를 생성할수 있는 방법은 없다 . --;
          *FileInputStream 클래스 : 연속적인 데이터를 읽을수 있게 해줌 --;
          FileInputStream in = new FileInputStream(args[0]); //원본 파일
          *표시/리셋(mark/reset)기능을 갖춘 FileInputStream만들기
          public class MarkResetFileInputStream extends FileInputStream {
          public MarkResetFileInputStream(String filename)throws IOException {
          public MarkResetFileInputStream(File file)throws IOException {
          protected MarkResetFileInputStream(RandomAccessFile file) throws IOException{
          this.file=file; //파일을 저장해논다. 이러면 랜덤엑세스랑 FileInputStream 사용할수있다.
Found 1 matching page out of 7540 total pages

You can also click here to search title.

Valid XHTML 1.0! Valid CSS! powered by MoniWiki
Processing time 0.0059 sec