SlideShare une entreprise Scribd logo
1  sur  54
Télécharger pour lire hors ligne
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

Contenu connexe

Tendances

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
 

Tendances (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
 

En vedette

En vedette (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
 

Similaire à 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
 

Similaire à 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
 
MODULE. .pptx
MODULE.                              .pptxMODULE.                              .pptx
MODULE. .pptx
 
Compiler worksheet
Compiler worksheetCompiler worksheet
Compiler worksheet
 

Plus de AshishSingh Bhatia

Plus de 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
 

Dernier

ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYKayeClaireEstoconing
 
Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Seán Kennedy
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...JojoEDelaCruz
 
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
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptshraddhaparab530
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptxmary850239
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptxmary850239
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designMIPLM
 
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
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management systemChristalin Nelson
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17Celine George
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptxmary850239
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...Postal Advocate Inc.
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSJoshuaGantuangco2
 

Dernier (20)

ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
 
Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
ENG 5 Q4 WEEk 1 DAY 1 Restate sentences heard in one’s own words. Use appropr...
 
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
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.ppt
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx
 
Raw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptxRaw materials used in Herbal Cosmetics.pptx
Raw materials used in Herbal Cosmetics.pptx
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-design
 
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
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management system
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
 
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTSGRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
GRADE 4 - SUMMATIVE TEST QUARTER 4 ALL SUBJECTS
 

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