SlideShare ist ein Scribd-Unternehmen logo
1 von 54
Downloaden Sie, um offline zu lesen
File IO in Java

       Prof. AshishSingh Bhatia, ast.bhatia@gmail.com,
     ashish@asbspace.in, Web: asbspace.in, M:9879009551


                                 September 21, 2012




Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   1
AGENDA
Overview of IO Classes
OutputStream of IO
InputStream of IO
Writer of IO
Reader of IO
Methods of OutputStream Class
Methods of Writer Class
Methods of Writer Class Extra
Methods of InputStream Class
Methods of Reader Class
InputStream Usage
OutputStream Usage
Bridge Classes
OutputStreamWriter
InputStream Reader
FileInput and FileOutput Stream
  Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   2
Overview of IO Classes




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   3
OutputStream of IO




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   4
InputStream of IO




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   5
Writer of IO




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   6
Reader of IO




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   7
Methods of OutputStream Class

       public void write(int b)
       Writes a single byte to an output stream. Why we need int as
       argument?




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   8
Methods of OutputStream Class

       public void write(int b)
       Writes a single byte to an output stream. Why we need int as
       argument?
       public void write(byte[] b)
       Writes complete byte array in to an outputstream.




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   9
Methods of OutputStream Class

       public void write(int b)
       Writes a single byte to an output stream. Why we need int as
       argument?
       public void write(byte[] b)
       Writes complete byte array in to an outputstream.
       public void write(byte[] b, int offset, int len)
       Write a subrange from offset to specified length[number of
       bytes].




    Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   10
Methods of OutputStream Class

       public void write(int b)
       Writes a single byte to an output stream. Why we need int as
       argument?
       public void write(byte[] b)
       Writes complete byte array in to an outputstream.
       public void write(byte[] b, int offset, int len)
       Write a subrange from offset to specified length[number of
       bytes].
       public void flush()
       Flushes the output buffer. Ensures the contents are written to
       the destination.




    Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   11
Methods of OutputStream Class

       public void write(int b)
       Writes a single byte to an output stream. Why we need int as
       argument?
       public void write(byte[] b)
       Writes complete byte array in to an outputstream.
       public void write(byte[] b, int offset, int len)
       Write a subrange from offset to specified length[number of
       bytes].
       public void flush()
       Flushes the output buffer. Ensures the contents are written to
       the destination.
       public void close()
       Closes the outputstream. Further write will generate
       IOException
    Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   12
Methods of Writer Class


        public void write(int ch)
        Writes a single character to an output stream. Why we need
        int as argument?




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   13
Methods of Writer Class


        public void write(int ch)
        Writes a single character to an output stream. Why we need
        int as argument?
        public void write(char[] ch)
        Writes complete character array in to an outputstream.




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   14
Methods of Writer Class


        public void write(int ch)
        Writes a single character to an output stream. Why we need
        int as argument?
        public void write(char[] ch)
        Writes complete character array in to an outputstream.
        public void write(char[] b, int offset, int len)
        Write a subrange from offset to specified length[number of
        character].




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   15
Methods of Writer Class


        public void write(int ch)
        Writes a single character to an output stream. Why we need
        int as argument?
        public void write(char[] ch)
        Writes complete character array in to an outputstream.
        public void write(char[] b, int offset, int len)
        Write a subrange from offset to specified length[number of
        character].
        public void flush()
        Flushes the output buffer. Ensures the contents are written to
        the destination.




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   16
Methods of Writer Class


        public void write(int ch)
        Writes a single character to an output stream. Why we need
        int as argument?
        public void write(char[] ch)
        Writes complete character array in to an outputstream.
        public void write(char[] b, int offset, int len)
        Write a subrange from offset to specified length[number of
        character].
        public void flush()
        Flushes the output buffer. Ensures the contents are written to
        the destination.
        public void close()
        Closes the writer. Further write will generate IOException

     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   17
Methods of Writer Class Extra




        String is a sequence of Character.
        public void write(String s)




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   18
Methods of Writer Class Extra




        String is a sequence of Character.
        public void write(String s)
        public void write(String s, int offset, int len)




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   19
Methods of Writer Class Extra




        String is a sequence of Character.
        public void write(String s)
        public void write(String s, int offset, int len)
        public void append(char ch)




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   20
Methods of Writer Class Extra




        String is a sequence of Character.
        public void write(String s)
        public void write(String s, int offset, int len)
        public void append(char ch)
        public void append(CharSequence cs)




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   21
Methods of Writer Class Extra




        String is a sequence of Character.
        public void write(String s)
        public void write(String s, int offset, int len)
        public void append(char ch)
        public void append(CharSequence cs)
        public void append(CharSequence cs, int offset,
        int len)




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   22
Methods of InputStream Class
        public int read()
        Read the integer representation of the next available byte of
        input. Returns -1 when the end of file is encountered.




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   23
Methods of InputStream Class
        public int read()
        Read the integer representation of the next available byte of
        input. Returns -1 when the end of file is encountered.
        public int read(byte[] b)
        Attempt to read up to b.length bytes in the the b array.
        Returns the number of actual bytes read. -1 is returned when
        the end of file is encountered.




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   24
Methods of InputStream Class
        public int read()
        Read the integer representation of the next available byte of
        input. Returns -1 when the end of file is encountered.
        public int read(byte[] b)
        Attempt to read up to b.length bytes in the the b array.
        Returns the number of actual bytes read. -1 is returned when
        the end of file is encountered.
        public int read(byte[] b, int offset, int len)




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   25
Methods of InputStream Class
        public int read()
        Read the integer representation of the next available byte of
        input. Returns -1 when the end of file is encountered.
        public int read(byte[] b)
        Attempt to read up to b.length bytes in the the b array.
        Returns the number of actual bytes read. -1 is returned when
        the end of file is encountered.
        public int read(byte[] b, int offset, int len)
        public long skip(long count)
        count indicates number of bytes to be skipped and return the
        number of byte skipped or -1 in case of end of file.




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   26
Methods of InputStream Class
        public int read()
        Read the integer representation of the next available byte of
        input. Returns -1 when the end of file is encountered.
        public int read(byte[] b)
        Attempt to read up to b.length bytes in the the b array.
        Returns the number of actual bytes read. -1 is returned when
        the end of file is encountered.
        public int read(byte[] b, int offset, int len)
        public long skip(long count)
        count indicates number of bytes to be skipped and return the
        number of byte skipped or -1 in case of end of file.
        public int available()
        Number of bytes available for reading.




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   27
Methods of InputStream Class
        public int read()
        Read the integer representation of the next available byte of
        input. Returns -1 when the end of file is encountered.
        public int read(byte[] b)
        Attempt to read up to b.length bytes in the the b array.
        Returns the number of actual bytes read. -1 is returned when
        the end of file is encountered.
        public int read(byte[] b, int offset, int len)
        public long skip(long count)
        count indicates number of bytes to be skipped and return the
        number of byte skipped or -1 in case of end of file.
        public int available()
        Number of bytes available for reading.
        public void mark(int readlimit)



     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   28
Methods of InputStream Class
        public int read()
        Read the integer representation of the next available byte of
        input. Returns -1 when the end of file is encountered.
        public int read(byte[] b)
        Attempt to read up to b.length bytes in the the b array.
        Returns the number of actual bytes read. -1 is returned when
        the end of file is encountered.
        public int read(byte[] b, int offset, int len)
        public long skip(long count)
        count indicates number of bytes to be skipped and return the
        number of byte skipped or -1 in case of end of file.
        public int available()
        Number of bytes available for reading.
        public void mark(int readlimit)
        public void reset()

     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   29
Methods of InputStream Class
        public int read()
        Read the integer representation of the next available byte of
        input. Returns -1 when the end of file is encountered.
        public int read(byte[] b)
        Attempt to read up to b.length bytes in the the b array.
        Returns the number of actual bytes read. -1 is returned when
        the end of file is encountered.
        public int read(byte[] b, int offset, int len)
        public long skip(long count)
        count indicates number of bytes to be skipped and return the
        number of byte skipped or -1 in case of end of file.
        public int available()
        Number of bytes available for reading.
        public void mark(int readlimit)
        public void reset()
        public boolean markSupported()
     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   30
Methods of InputStream Class
        public int read()
        Read the integer representation of the next available byte of
        input. Returns -1 when the end of file is encountered.
        public int read(byte[] b)
        Attempt to read up to b.length bytes in the the b array.
        Returns the number of actual bytes read. -1 is returned when
        the end of file is encountered.
        public int read(byte[] b, int offset, int len)
        public long skip(long count)
        count indicates number of bytes to be skipped and return the
        number of byte skipped or -1 in case of end of file.
        public int available()
        Number of bytes available for reading.
        public void mark(int readlimit)
        public void reset()
        public boolean markSupported()
        public void close()
     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 31
Methods of Reader Class



        public int read()




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   32
Methods of Reader Class



        public int read()
        public int read(char[] b)




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   33
Methods of Reader Class



        public int read()
        public int read(char[] b)
        public int read(char[] b, int offset, int len)




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   34
Methods of Reader Class



        public int read()
        public int read(char[] b)
        public int read(char[] b, int offset, int len)
        public long skip(long count)




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   35
Methods of Reader Class



        public int read()
        public int read(char[] b)
        public int read(char[] b, int offset, int len)
        public long skip(long count)
        public boolean ready()




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   36
Methods of Reader Class



        public int read()
        public int read(char[] b)
        public int read(char[] b, int offset, int len)
        public long skip(long count)
        public boolean ready()
        public void mark(int readlimit)




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   37
Methods of Reader Class



        public int read()
        public int read(char[] b)
        public int read(char[] b, int offset, int len)
        public long skip(long count)
        public boolean ready()
        public void mark(int readlimit)
        public void reset()




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   38
Methods of Reader Class



        public int read()
        public int read(char[] b)
        public int read(char[] b, int offset, int len)
        public long skip(long count)
        public boolean ready()
        public void mark(int readlimit)
        public void reset()
        public boolean markSupported()




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   39
Methods of Reader Class



        public int read()
        public int read(char[] b)
        public int read(char[] b, int offset, int len)
        public long skip(long count)
        public boolean ready()
        public void mark(int readlimit)
        public void reset()
        public boolean markSupported()
        public void close()




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   40
InputStream Usage




    Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   41
OutputStream Usage




    Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   42
Bridge Classes



        OutputStreamWriter and InputStreamReader
        Character Base Stream Classes which inturns work on bytes.
        Handles unicode character and bytes both.
        Encoding and Decoding of unicode character from and to
        various character set.
        java.nio.charset package has classes which handle
        encoding and decoding.
        class Charset represents different character set.




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   43
OutputStreamWriter




    Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   44
InputStream Reader




    Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   45
FileInput and FileOutput Stream




        Output and input of binary files.




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   46
FileInput and FileOutput Stream




        Output and input of binary files.
        FileOutputStream create and write bytes in to physical file.




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   47
FileInput and FileOutput Stream




        Output and input of binary files.
        FileOutputStream create and write bytes in to physical file.
        If file exists it overwrites it until append flag is used.




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   48
FileInput and FileOutput Stream




        Output and input of binary files.
        FileOutputStream create and write bytes in to physical file.
        If file exists it overwrites it until append flag is used.
        Inherits all the methods from the OutputStream.




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   49
FileInput and FileOutput Stream




        Output and input of binary files.
        FileOutputStream create and write bytes in to physical file.
        If file exists it overwrites it until append flag is used.
        Inherits all the methods from the OutputStream.
        Additional methods are
        public FileDescriptor getFD()
        public FileChannel getChannel()




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   50
FileDescriptor




        Whenever any file is opened for input or output, it uses a file
        descriptor.




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   51
FileDescriptor




        Whenever any file is opened for input or output, it uses a file
        descriptor.
        0=Standard Input




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   52
FileDescriptor




        Whenever any file is opened for input or output, it uses a file
        descriptor.
        0=Standard Input
        1=Standard Output




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   53
FileDescriptor




        Whenever any file is opened for input or output, it uses a file
        descriptor.
        0=Standard Input
        1=Standard Output
        2=Standard Error




     Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551   54

Weitere ähnliche Inhalte

Was ist angesagt?

11.the novel lossless text compression technique using ambigram logic and huf...
11.the novel lossless text compression technique using ambigram logic and huf...11.the novel lossless text compression technique using ambigram logic and huf...
11.the novel lossless text compression technique using ambigram logic and huf...Alexander Decker
 
Acm aleppo cpc training eighth session
Acm aleppo cpc training eighth sessionAcm aleppo cpc training eighth session
Acm aleppo cpc training eighth sessionAhmad Bashar Eter
 
Acm aleppo cpc training ninth session
Acm aleppo cpc training ninth sessionAcm aleppo cpc training ninth session
Acm aleppo cpc training ninth sessionAhmad Bashar Eter
 
Introduction to c programming
Introduction to c programmingIntroduction to c programming
Introduction to c programmingSaranyaK68
 
Chapter Three(2)
Chapter Three(2)Chapter Three(2)
Chapter Three(2)bolovv
 
Aspects of software naturalness through the generation of IdentifierNames
Aspects of software naturalness through the generation of IdentifierNamesAspects of software naturalness through the generation of IdentifierNames
Aspects of software naturalness through the generation of IdentifierNamesOleksandr Zaitsev
 
Introduction To Programming with Python
Introduction To Programming with PythonIntroduction To Programming with Python
Introduction To Programming with PythonSushant Mane
 
Acm aleppo cpc training second session
Acm aleppo cpc training second sessionAcm aleppo cpc training second session
Acm aleppo cpc training second sessionAhmad Bashar Eter
 
Acm aleppo cpc training introduction 1
Acm aleppo cpc training introduction 1Acm aleppo cpc training introduction 1
Acm aleppo cpc training introduction 1Ahmad Bashar Eter
 
Designing a Software Application for Fiber Fano Planes
Designing a Software Application for Fiber Fano PlanesDesigning a Software Application for Fiber Fano Planes
Designing a Software Application for Fiber Fano Planesinventionjournals
 
Functional Programming in Pattern-Match-Oriented Programming Style <Programmi...
Functional Programming in Pattern-Match-Oriented Programming Style <Programmi...Functional Programming in Pattern-Match-Oriented Programming Style <Programmi...
Functional Programming in Pattern-Match-Oriented Programming Style <Programmi...Rakuten Group, Inc.
 
11 Unit 1 Chapter 03 Data Handling
11   Unit 1 Chapter 03 Data Handling11   Unit 1 Chapter 03 Data Handling
11 Unit 1 Chapter 03 Data HandlingPraveen M Jigajinni
 

Was ist angesagt? (19)

11.the novel lossless text compression technique using ambigram logic and huf...
11.the novel lossless text compression technique using ambigram logic and huf...11.the novel lossless text compression technique using ambigram logic and huf...
11.the novel lossless text compression technique using ambigram logic and huf...
 
Acm aleppo cpc training eighth session
Acm aleppo cpc training eighth sessionAcm aleppo cpc training eighth session
Acm aleppo cpc training eighth session
 
Acm aleppo cpc training ninth session
Acm aleppo cpc training ninth sessionAcm aleppo cpc training ninth session
Acm aleppo cpc training ninth session
 
Introduction to c programming
Introduction to c programmingIntroduction to c programming
Introduction to c programming
 
Huffman analysis
Huffman analysisHuffman analysis
Huffman analysis
 
Chapter Three(2)
Chapter Three(2)Chapter Three(2)
Chapter Three(2)
 
Aspects of software naturalness through the generation of IdentifierNames
Aspects of software naturalness through the generation of IdentifierNamesAspects of software naturalness through the generation of IdentifierNames
Aspects of software naturalness through the generation of IdentifierNames
 
Introduction To Programming with Python
Introduction To Programming with PythonIntroduction To Programming with Python
Introduction To Programming with Python
 
Lec32
Lec32Lec32
Lec32
 
Huffman codes
Huffman codesHuffman codes
Huffman codes
 
Acm aleppo cpc training second session
Acm aleppo cpc training second sessionAcm aleppo cpc training second session
Acm aleppo cpc training second session
 
Acm aleppo cpc training introduction 1
Acm aleppo cpc training introduction 1Acm aleppo cpc training introduction 1
Acm aleppo cpc training introduction 1
 
Designing a Software Application for Fiber Fano Planes
Designing a Software Application for Fiber Fano PlanesDesigning a Software Application for Fiber Fano Planes
Designing a Software Application for Fiber Fano Planes
 
Functional Programming in Pattern-Match-Oriented Programming Style <Programmi...
Functional Programming in Pattern-Match-Oriented Programming Style <Programmi...Functional Programming in Pattern-Match-Oriented Programming Style <Programmi...
Functional Programming in Pattern-Match-Oriented Programming Style <Programmi...
 
Huffman coding || Huffman Tree
Huffman coding || Huffman TreeHuffman coding || Huffman Tree
Huffman coding || Huffman Tree
 
The Egison Programming Language
The Egison Programming LanguageThe Egison Programming Language
The Egison Programming Language
 
Huffman Coding
Huffman CodingHuffman Coding
Huffman Coding
 
Regex posix
Regex posixRegex posix
Regex posix
 
11 Unit 1 Chapter 03 Data Handling
11   Unit 1 Chapter 03 Data Handling11   Unit 1 Chapter 03 Data Handling
11 Unit 1 Chapter 03 Data Handling
 

Andere mochten auch

Andere mochten auch (8)

Java script
Java scriptJava script
Java script
 
JavaScript State of the Union - Jan 2013
JavaScript State of the Union - Jan 2013JavaScript State of the Union - Jan 2013
JavaScript State of the Union - Jan 2013
 
IPv6
IPv6IPv6
IPv6
 
Syllabus of BCA Second Year JAMMU University
Syllabus of BCA Second Year JAMMU UniversitySyllabus of BCA Second Year JAMMU University
Syllabus of BCA Second Year JAMMU University
 
HTTP Basic and Servlet Basic
HTTP Basic and Servlet BasicHTTP Basic and Servlet Basic
HTTP Basic and Servlet Basic
 
Servlet Event framework
Servlet Event frameworkServlet Event framework
Servlet Event framework
 
Nested and Enum in Java
Nested and Enum in JavaNested and Enum in Java
Nested and Enum in Java
 
I/O In Java Part 2
I/O In Java Part 2I/O In Java Part 2
I/O In Java Part 2
 

Ähnlich wie Java I/O Part 2

Java Input and Output
Java Input and OutputJava Input and Output
Java Input and OutputDucat India
 
UNIT4-IO,Generics,String Handling.pdf Notes
UNIT4-IO,Generics,String Handling.pdf NotesUNIT4-IO,Generics,String Handling.pdf Notes
UNIT4-IO,Generics,String Handling.pdf NotesSakkaravarthiS1
 
شرح مقرر البرمجة 2 لغة جافا - الوحدة الثامنة
شرح مقرر البرمجة 2   لغة جافا - الوحدة الثامنةشرح مقرر البرمجة 2   لغة جافا - الوحدة الثامنة
شرح مقرر البرمجة 2 لغة جافا - الوحدة الثامنةجامعة القدس المفتوحة
 
Os Vanrossum
Os VanrossumOs Vanrossum
Os Vanrossumoscon2007
 
C cheat sheet for varsity (extreme edition)
C cheat sheet for varsity (extreme edition)C cheat sheet for varsity (extreme edition)
C cheat sheet for varsity (extreme edition)Saifur Rahman
 
Java Tutorial Lab 6
Java Tutorial Lab 6Java Tutorial Lab 6
Java Tutorial Lab 6Berk Soysal
 
Ecs40 winter 2017 homework 3
Ecs40 winter 2017 homework 3Ecs40 winter 2017 homework 3
Ecs40 winter 2017 homework 3JenniferBall44
 
Fantom on the JVM Devoxx09 BOF
Fantom on the JVM Devoxx09 BOFFantom on the JVM Devoxx09 BOF
Fantom on the JVM Devoxx09 BOFDror Bereznitsky
 
Syntax Comparison of Golang with C and Java - Mindbowser
Syntax Comparison of Golang with C and Java - MindbowserSyntax Comparison of Golang with C and Java - Mindbowser
Syntax Comparison of Golang with C and Java - MindbowserMindbowser Inc
 
LiangChapter4 Unicode , ASCII Code .ppt
LiangChapter4 Unicode , ASCII Code  .pptLiangChapter4 Unicode , ASCII Code  .ppt
LiangChapter4 Unicode , ASCII Code .pptzainiiqbal761
 
String Handling, Inheritance, Packages and Interfaces
String Handling, Inheritance, Packages and InterfacesString Handling, Inheritance, Packages and Interfaces
String Handling, Inheritance, Packages and InterfacesPrabu U
 
2016 bioinformatics i_python_part_2_strings_wim_vancriekinge
2016 bioinformatics i_python_part_2_strings_wim_vancriekinge2016 bioinformatics i_python_part_2_strings_wim_vancriekinge
2016 bioinformatics i_python_part_2_strings_wim_vancriekingeProf. Wim Van Criekinge
 
H U F F M A N Algorithm Class
H U F F M A N Algorithm ClassH U F F M A N Algorithm Class
H U F F M A N Algorithm ClassJade Danial
 
Compiler worksheet
Compiler worksheetCompiler worksheet
Compiler worksheetArthyR3
 
Kotlin: A pragmatic language by JetBrains
Kotlin: A pragmatic language by JetBrainsKotlin: A pragmatic language by JetBrains
Kotlin: A pragmatic language by JetBrainsJigar Gosar
 

Ähnlich wie Java I/O Part 2 (20)

Java Input and Output
Java Input and OutputJava Input and Output
Java Input and Output
 
UNIT4-IO,Generics,String Handling.pdf Notes
UNIT4-IO,Generics,String Handling.pdf NotesUNIT4-IO,Generics,String Handling.pdf Notes
UNIT4-IO,Generics,String Handling.pdf Notes
 
شرح مقرر البرمجة 2 لغة جافا - الوحدة الثامنة
شرح مقرر البرمجة 2   لغة جافا - الوحدة الثامنةشرح مقرر البرمجة 2   لغة جافا - الوحدة الثامنة
شرح مقرر البرمجة 2 لغة جافا - الوحدة الثامنة
 
Os Vanrossum
Os VanrossumOs Vanrossum
Os Vanrossum
 
C cheat sheet for varsity (extreme edition)
C cheat sheet for varsity (extreme edition)C cheat sheet for varsity (extreme edition)
C cheat sheet for varsity (extreme edition)
 
Java Tutorial Lab 6
Java Tutorial Lab 6Java Tutorial Lab 6
Java Tutorial Lab 6
 
Java Day-6
Java Day-6Java Day-6
Java Day-6
 
Ecs40 winter 2017 homework 3
Ecs40 winter 2017 homework 3Ecs40 winter 2017 homework 3
Ecs40 winter 2017 homework 3
 
Fantom on the JVM Devoxx09 BOF
Fantom on the JVM Devoxx09 BOFFantom on the JVM Devoxx09 BOF
Fantom on the JVM Devoxx09 BOF
 
Unit IV Notes.docx
Unit IV Notes.docxUnit IV Notes.docx
Unit IV Notes.docx
 
Syntax Comparison of Golang with C and Java - Mindbowser
Syntax Comparison of Golang with C and Java - MindbowserSyntax Comparison of Golang with C and Java - Mindbowser
Syntax Comparison of Golang with C and Java - Mindbowser
 
python1.ppt
python1.pptpython1.ppt
python1.ppt
 
LiangChapter4 Unicode , ASCII Code .ppt
LiangChapter4 Unicode , ASCII Code  .pptLiangChapter4 Unicode , ASCII Code  .ppt
LiangChapter4 Unicode , ASCII Code .ppt
 
Inputstream
InputstreamInputstream
Inputstream
 
Inputstream
InputstreamInputstream
Inputstream
 
String Handling, Inheritance, Packages and Interfaces
String Handling, Inheritance, Packages and InterfacesString Handling, Inheritance, Packages and Interfaces
String Handling, Inheritance, Packages and Interfaces
 
2016 bioinformatics i_python_part_2_strings_wim_vancriekinge
2016 bioinformatics i_python_part_2_strings_wim_vancriekinge2016 bioinformatics i_python_part_2_strings_wim_vancriekinge
2016 bioinformatics i_python_part_2_strings_wim_vancriekinge
 
H U F F M A N Algorithm Class
H U F F M A N Algorithm ClassH U F F M A N Algorithm Class
H U F F M A N Algorithm Class
 
Compiler worksheet
Compiler worksheetCompiler worksheet
Compiler worksheet
 
Kotlin: A pragmatic language by JetBrains
Kotlin: A pragmatic language by JetBrainsKotlin: A pragmatic language by JetBrains
Kotlin: A pragmatic language by JetBrains
 

Mehr von AshishSingh Bhatia

Mehr von AshishSingh Bhatia (6)

Servlet Filter
Servlet FilterServlet Filter
Servlet Filter
 
JSP : Creating Custom Tag
JSP : Creating Custom Tag JSP : Creating Custom Tag
JSP : Creating Custom Tag
 
Dom Basics
Dom BasicsDom Basics
Dom Basics
 
Java I/O Part 1
Java I/O Part 1Java I/O Part 1
Java I/O Part 1
 
Nested and Enum Type in Java
Nested and Enum Type in JavaNested and Enum Type in Java
Nested and Enum Type in Java
 
Http and Servlet basics
Http and Servlet basicsHttp and Servlet basics
Http and Servlet basics
 

Kürzlich hochgeladen

Reading and Writing Skills 11 quarter 4 melc 1
Reading and Writing Skills 11 quarter 4 melc 1Reading and Writing Skills 11 quarter 4 melc 1
Reading and Writing Skills 11 quarter 4 melc 1GloryAnnCastre1
 
4.11.24 Poverty and Inequality in America.pptx
4.11.24 Poverty and Inequality in America.pptx4.11.24 Poverty and Inequality in America.pptx
4.11.24 Poverty and Inequality in America.pptxmary850239
 
week 1 cookery 8 fourth - quarter .pptx
week 1 cookery 8  fourth  -  quarter .pptxweek 1 cookery 8  fourth  -  quarter .pptx
week 1 cookery 8 fourth - quarter .pptxJonalynLegaspi2
 
ICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfVanessa Camilleri
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxHumphrey A Beña
 
Multi Domain Alias In the Odoo 17 ERP Module
Multi Domain Alias In the Odoo 17 ERP ModuleMulti Domain Alias In the Odoo 17 ERP Module
Multi Domain Alias In the Odoo 17 ERP ModuleCeline George
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4JOYLYNSAMANIEGO
 
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptxDecoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptxDhatriParmar
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxVanesaIglesias10
 
MS4 level being good citizen -imperative- (1) (1).pdf
MS4 level   being good citizen -imperative- (1) (1).pdfMS4 level   being good citizen -imperative- (1) (1).pdf
MS4 level being good citizen -imperative- (1) (1).pdfMr Bounab Samir
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxlancelewisportillo
 
How to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 DatabaseHow to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 DatabaseCeline George
 
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptxMan or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptxDhatriParmar
 
Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...
Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...
Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...DhatriParmar
 
Grade Three -ELLNA-REVIEWER-ENGLISH.pptx
Grade Three -ELLNA-REVIEWER-ENGLISH.pptxGrade Three -ELLNA-REVIEWER-ENGLISH.pptx
Grade Three -ELLNA-REVIEWER-ENGLISH.pptxkarenfajardo43
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfJemuel Francisco
 
Oppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmOppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmStan Meyer
 

Kürzlich hochgeladen (20)

Reading and Writing Skills 11 quarter 4 melc 1
Reading and Writing Skills 11 quarter 4 melc 1Reading and Writing Skills 11 quarter 4 melc 1
Reading and Writing Skills 11 quarter 4 melc 1
 
4.11.24 Poverty and Inequality in America.pptx
4.11.24 Poverty and Inequality in America.pptx4.11.24 Poverty and Inequality in America.pptx
4.11.24 Poverty and Inequality in America.pptx
 
week 1 cookery 8 fourth - quarter .pptx
week 1 cookery 8  fourth  -  quarter .pptxweek 1 cookery 8  fourth  -  quarter .pptx
week 1 cookery 8 fourth - quarter .pptx
 
ICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdfICS2208 Lecture6 Notes for SL spaces.pdf
ICS2208 Lecture6 Notes for SL spaces.pdf
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
 
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptxINCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
 
Mattingly "AI & Prompt Design: Large Language Models"
Mattingly "AI & Prompt Design: Large Language Models"Mattingly "AI & Prompt Design: Large Language Models"
Mattingly "AI & Prompt Design: Large Language Models"
 
Multi Domain Alias In the Odoo 17 ERP Module
Multi Domain Alias In the Odoo 17 ERP ModuleMulti Domain Alias In the Odoo 17 ERP Module
Multi Domain Alias In the Odoo 17 ERP Module
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4
 
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptxDecoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptx
 
MS4 level being good citizen -imperative- (1) (1).pdf
MS4 level   being good citizen -imperative- (1) (1).pdfMS4 level   being good citizen -imperative- (1) (1).pdf
MS4 level being good citizen -imperative- (1) (1).pdf
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
 
How to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 DatabaseHow to Make a Duplicate of Your Odoo 17 Database
How to Make a Duplicate of Your Odoo 17 Database
 
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptxMan or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
 
Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...
Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...
Blowin' in the Wind of Caste_ Bob Dylan's Song as a Catalyst for Social Justi...
 
Grade Three -ELLNA-REVIEWER-ENGLISH.pptx
Grade Three -ELLNA-REVIEWER-ENGLISH.pptxGrade Three -ELLNA-REVIEWER-ENGLISH.pptx
Grade Three -ELLNA-REVIEWER-ENGLISH.pptx
 
Paradigm shift in nursing research by RS MEHTA
Paradigm shift in nursing research by RS MEHTAParadigm shift in nursing research by RS MEHTA
Paradigm shift in nursing research by RS MEHTA
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
 
Oppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmOppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and Film
 

Java I/O Part 2

  • 1. File IO in Java Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 September 21, 2012 Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 1
  • 2. AGENDA Overview of IO Classes OutputStream of IO InputStream of IO Writer of IO Reader of IO Methods of OutputStream Class Methods of Writer Class Methods of Writer Class Extra Methods of InputStream Class Methods of Reader Class InputStream Usage OutputStream Usage Bridge Classes OutputStreamWriter InputStream Reader FileInput and FileOutput Stream Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 2
  • 3. Overview of IO Classes Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 3
  • 4. OutputStream of IO Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 4
  • 5. InputStream of IO Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 5
  • 6. Writer of IO Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 6
  • 7. Reader of IO Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 7
  • 8. Methods of OutputStream Class public void write(int b) Writes a single byte to an output stream. Why we need int as argument? Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 8
  • 9. Methods of OutputStream Class public void write(int b) Writes a single byte to an output stream. Why we need int as argument? public void write(byte[] b) Writes complete byte array in to an outputstream. Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 9
  • 10. Methods of OutputStream Class public void write(int b) Writes a single byte to an output stream. Why we need int as argument? public void write(byte[] b) Writes complete byte array in to an outputstream. public void write(byte[] b, int offset, int len) Write a subrange from offset to specified length[number of bytes]. Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 10
  • 11. Methods of OutputStream Class public void write(int b) Writes a single byte to an output stream. Why we need int as argument? public void write(byte[] b) Writes complete byte array in to an outputstream. public void write(byte[] b, int offset, int len) Write a subrange from offset to specified length[number of bytes]. public void flush() Flushes the output buffer. Ensures the contents are written to the destination. Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 11
  • 12. Methods of OutputStream Class public void write(int b) Writes a single byte to an output stream. Why we need int as argument? public void write(byte[] b) Writes complete byte array in to an outputstream. public void write(byte[] b, int offset, int len) Write a subrange from offset to specified length[number of bytes]. public void flush() Flushes the output buffer. Ensures the contents are written to the destination. public void close() Closes the outputstream. Further write will generate IOException Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 12
  • 13. Methods of Writer Class public void write(int ch) Writes a single character to an output stream. Why we need int as argument? Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 13
  • 14. Methods of Writer Class public void write(int ch) Writes a single character to an output stream. Why we need int as argument? public void write(char[] ch) Writes complete character array in to an outputstream. Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 14
  • 15. Methods of Writer Class public void write(int ch) Writes a single character to an output stream. Why we need int as argument? public void write(char[] ch) Writes complete character array in to an outputstream. public void write(char[] b, int offset, int len) Write a subrange from offset to specified length[number of character]. Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 15
  • 16. Methods of Writer Class public void write(int ch) Writes a single character to an output stream. Why we need int as argument? public void write(char[] ch) Writes complete character array in to an outputstream. public void write(char[] b, int offset, int len) Write a subrange from offset to specified length[number of character]. public void flush() Flushes the output buffer. Ensures the contents are written to the destination. Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 16
  • 17. Methods of Writer Class public void write(int ch) Writes a single character to an output stream. Why we need int as argument? public void write(char[] ch) Writes complete character array in to an outputstream. public void write(char[] b, int offset, int len) Write a subrange from offset to specified length[number of character]. public void flush() Flushes the output buffer. Ensures the contents are written to the destination. public void close() Closes the writer. Further write will generate IOException Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 17
  • 18. Methods of Writer Class Extra String is a sequence of Character. public void write(String s) Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 18
  • 19. Methods of Writer Class Extra String is a sequence of Character. public void write(String s) public void write(String s, int offset, int len) Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 19
  • 20. Methods of Writer Class Extra String is a sequence of Character. public void write(String s) public void write(String s, int offset, int len) public void append(char ch) Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 20
  • 21. Methods of Writer Class Extra String is a sequence of Character. public void write(String s) public void write(String s, int offset, int len) public void append(char ch) public void append(CharSequence cs) Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 21
  • 22. Methods of Writer Class Extra String is a sequence of Character. public void write(String s) public void write(String s, int offset, int len) public void append(char ch) public void append(CharSequence cs) public void append(CharSequence cs, int offset, int len) Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 22
  • 23. Methods of InputStream Class public int read() Read the integer representation of the next available byte of input. Returns -1 when the end of file is encountered. Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 23
  • 24. Methods of InputStream Class public int read() Read the integer representation of the next available byte of input. Returns -1 when the end of file is encountered. public int read(byte[] b) Attempt to read up to b.length bytes in the the b array. Returns the number of actual bytes read. -1 is returned when the end of file is encountered. Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 24
  • 25. Methods of InputStream Class public int read() Read the integer representation of the next available byte of input. Returns -1 when the end of file is encountered. public int read(byte[] b) Attempt to read up to b.length bytes in the the b array. Returns the number of actual bytes read. -1 is returned when the end of file is encountered. public int read(byte[] b, int offset, int len) Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 25
  • 26. Methods of InputStream Class public int read() Read the integer representation of the next available byte of input. Returns -1 when the end of file is encountered. public int read(byte[] b) Attempt to read up to b.length bytes in the the b array. Returns the number of actual bytes read. -1 is returned when the end of file is encountered. public int read(byte[] b, int offset, int len) public long skip(long count) count indicates number of bytes to be skipped and return the number of byte skipped or -1 in case of end of file. Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 26
  • 27. Methods of InputStream Class public int read() Read the integer representation of the next available byte of input. Returns -1 when the end of file is encountered. public int read(byte[] b) Attempt to read up to b.length bytes in the the b array. Returns the number of actual bytes read. -1 is returned when the end of file is encountered. public int read(byte[] b, int offset, int len) public long skip(long count) count indicates number of bytes to be skipped and return the number of byte skipped or -1 in case of end of file. public int available() Number of bytes available for reading. Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 27
  • 28. Methods of InputStream Class public int read() Read the integer representation of the next available byte of input. Returns -1 when the end of file is encountered. public int read(byte[] b) Attempt to read up to b.length bytes in the the b array. Returns the number of actual bytes read. -1 is returned when the end of file is encountered. public int read(byte[] b, int offset, int len) public long skip(long count) count indicates number of bytes to be skipped and return the number of byte skipped or -1 in case of end of file. public int available() Number of bytes available for reading. public void mark(int readlimit) Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 28
  • 29. Methods of InputStream Class public int read() Read the integer representation of the next available byte of input. Returns -1 when the end of file is encountered. public int read(byte[] b) Attempt to read up to b.length bytes in the the b array. Returns the number of actual bytes read. -1 is returned when the end of file is encountered. public int read(byte[] b, int offset, int len) public long skip(long count) count indicates number of bytes to be skipped and return the number of byte skipped or -1 in case of end of file. public int available() Number of bytes available for reading. public void mark(int readlimit) public void reset() Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 29
  • 30. Methods of InputStream Class public int read() Read the integer representation of the next available byte of input. Returns -1 when the end of file is encountered. public int read(byte[] b) Attempt to read up to b.length bytes in the the b array. Returns the number of actual bytes read. -1 is returned when the end of file is encountered. public int read(byte[] b, int offset, int len) public long skip(long count) count indicates number of bytes to be skipped and return the number of byte skipped or -1 in case of end of file. public int available() Number of bytes available for reading. public void mark(int readlimit) public void reset() public boolean markSupported() Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 30
  • 31. Methods of InputStream Class public int read() Read the integer representation of the next available byte of input. Returns -1 when the end of file is encountered. public int read(byte[] b) Attempt to read up to b.length bytes in the the b array. Returns the number of actual bytes read. -1 is returned when the end of file is encountered. public int read(byte[] b, int offset, int len) public long skip(long count) count indicates number of bytes to be skipped and return the number of byte skipped or -1 in case of end of file. public int available() Number of bytes available for reading. public void mark(int readlimit) public void reset() public boolean markSupported() public void close() Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 31
  • 32. Methods of Reader Class public int read() Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 32
  • 33. Methods of Reader Class public int read() public int read(char[] b) Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 33
  • 34. Methods of Reader Class public int read() public int read(char[] b) public int read(char[] b, int offset, int len) Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 34
  • 35. Methods of Reader Class public int read() public int read(char[] b) public int read(char[] b, int offset, int len) public long skip(long count) Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 35
  • 36. Methods of Reader Class public int read() public int read(char[] b) public int read(char[] b, int offset, int len) public long skip(long count) public boolean ready() Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 36
  • 37. Methods of Reader Class public int read() public int read(char[] b) public int read(char[] b, int offset, int len) public long skip(long count) public boolean ready() public void mark(int readlimit) Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 37
  • 38. Methods of Reader Class public int read() public int read(char[] b) public int read(char[] b, int offset, int len) public long skip(long count) public boolean ready() public void mark(int readlimit) public void reset() Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 38
  • 39. Methods of Reader Class public int read() public int read(char[] b) public int read(char[] b, int offset, int len) public long skip(long count) public boolean ready() public void mark(int readlimit) public void reset() public boolean markSupported() Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 39
  • 40. Methods of Reader Class public int read() public int read(char[] b) public int read(char[] b, int offset, int len) public long skip(long count) public boolean ready() public void mark(int readlimit) public void reset() public boolean markSupported() public void close() Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 40
  • 41. InputStream Usage Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 41
  • 42. OutputStream Usage Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 42
  • 43. Bridge Classes OutputStreamWriter and InputStreamReader Character Base Stream Classes which inturns work on bytes. Handles unicode character and bytes both. Encoding and Decoding of unicode character from and to various character set. java.nio.charset package has classes which handle encoding and decoding. class Charset represents different character set. Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 43
  • 44. OutputStreamWriter Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 44
  • 45. InputStream Reader Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 45
  • 46. FileInput and FileOutput Stream Output and input of binary files. Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 46
  • 47. FileInput and FileOutput Stream Output and input of binary files. FileOutputStream create and write bytes in to physical file. Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 47
  • 48. FileInput and FileOutput Stream Output and input of binary files. FileOutputStream create and write bytes in to physical file. If file exists it overwrites it until append flag is used. Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 48
  • 49. FileInput and FileOutput Stream Output and input of binary files. FileOutputStream create and write bytes in to physical file. If file exists it overwrites it until append flag is used. Inherits all the methods from the OutputStream. Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 49
  • 50. FileInput and FileOutput Stream Output and input of binary files. FileOutputStream create and write bytes in to physical file. If file exists it overwrites it until append flag is used. Inherits all the methods from the OutputStream. Additional methods are public FileDescriptor getFD() public FileChannel getChannel() Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 50
  • 51. FileDescriptor Whenever any file is opened for input or output, it uses a file descriptor. Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 51
  • 52. FileDescriptor Whenever any file is opened for input or output, it uses a file descriptor. 0=Standard Input Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 52
  • 53. FileDescriptor Whenever any file is opened for input or output, it uses a file descriptor. 0=Standard Input 1=Standard Output Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 53
  • 54. FileDescriptor Whenever any file is opened for input or output, it uses a file descriptor. 0=Standard Input 1=Standard Output 2=Standard Error Prof. AshishSingh Bhatia, ast.bhatia@gmail.com, ashish@asbspace.in, Web: asbspace.in, M:9879009551 54