Friday 29 July 2016

Java Tutorial : Java IO (BufferedInputStream)


Click here to watch in Youtube :
https://www.youtube.com/watch?v=_ncGP5lEGBM&list=UUhwKlOVR041tngjerWxVccw

Click the below Image to Enlarge
Java Tutorial : Java IO (BufferedInputStream)
Java Tutorial : Java IO (BufferedInputStream)
Java Tutorial : Java IO (BufferedInputStream)
Java Tutorial : Java IO (BufferedInputStream)
Java Tutorial : Java IO (BufferedInputStream)
Java Tutorial : Java IO (BufferedInputStream)
myinputfile.txt
Peter is going to India.

BufferedInputStreamDemo.java
import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.IOException;

public class BufferedInputStreamDemo
{

    public static void main(String[] args) throws IOException
    {
        BufferedInputStreamDemo bufferedInputStreamDemo = new BufferedInputStreamDemo();
        bufferedInputStreamDemo.readFile();
    }

    private void readFile() throws IOException
    {
        FileInputStream fileInputStream = null;
        BufferedInputStream bufferedInputStream = null;

        try
        {
            fileInputStream = new FileInputStream("myinputfile.txt");
            bufferedInputStream = new BufferedInputStream(fileInputStream);

            int i;
            while ((i = bufferedInputStream.read()) != -1)
            {
                System.out.print((char) i);
            }
        }

        finally
        {
            if (fileInputStream != null)
            {
                fileInputStream.close();
            }
            if (bufferedInputStream != null)
            {
                bufferedInputStream.close();
            }
        }
    }
}
Output
Peter is going to India.
Refer:


Click the below link to download the code:
https://sites.google.com/site/ramj2eev1/home/javabasics/JavaIODemo_BufferedInputStream_Intro_App.zip?attredirects=0&d=1

Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/JavaIODemo_BufferedInputStream_Intro_App

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/a5a29c88719d4853b7ba8bae1b5fc9715fbc328c/BasicJava/JavaIODemo_BufferedInputStream_Intro_App/?at=master

See also:

  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • All JAVA EE Links
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • Java Collection Framework Tutorial
  • JAVA Tutorial
  • Kids Tutorial
  • No comments:

    Post a Comment