Click here to watch in Youtube :
https://www.youtube.com/watch?v=01IGWhXvcag&list=UUhwKlOVR041tngjerWxVccw
Peter is going to India.
import java.io.BufferedInputStream; import java.io.FileInputStream; import java.io.IOException; /* * public BufferedInputStream(InputStream in, int size) * * Parameters: * ----------- * * in - the underlying input stream. * size - the buffer size. */ 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"); int bufferSize = 8 * 1024; /* * Creates a BufferedInputStream with the * specified buffer size */ bufferedInputStream = new BufferedInputStream(fileInputStream,bufferSize); int i; while ((i = bufferedInputStream.read()) != -1) { System.out.print((char) i); } } finally { if (fileInputStream != null) { fileInputStream.close(); } if (bufferedInputStream != null) { bufferedInputStream.close(); } } } }
Peter is going to India.
https://sites.google.com/site/ramj2eev1/home/javabasics/JavaIODemo_BufferedInputStream_Buffersize_App.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/JavaIODemo_BufferedInputStream_Buffersize_App
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/a5a29c88719d4853b7ba8bae1b5fc9715fbc328c/BasicJava/JavaIODemo_BufferedInputStream_Buffersize_App/?at=master
See also:
No comments:
Post a Comment