Searched for ""

How to read a File using BufferedInputStream

Here we are discussing about reading the file using BufferedInputStream. To learn to read File using Scanner  Click Here. package JavaIOExample; import java.io.BufferedInputStream; import java.io.DataInputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.util.Scanner; /* * Here we will learn to read the file using BufferedInputStream. */ public class ReadTheFileUsingBufferedInputStream { @SuppressWarnings("deprecation") public static void… Continue reading

Getting Started with JSP

JSP(Java Server Pages) is a view technology which allows to write template text in client side languages like HTML, CSS, JavaScript and others, instead of Java itself(Which is true for Servlet). To achieve this JSP supports Taglibs(Backed by Java code), Expression Languages and Scriptlet to control theoutput of page. In the end a JSP becomes… Continue reading