JSP Java Tutorial

<%@ page  import="java.io.*" %>

    
        The file
    
    
        

The Guest Book


        Here are the current entries in the file: 
        

        <%
            String file = application.getRealPath("/") + "basic.jsp";
            File fileObject = new File(file);
            char data[] = new char[(int) fileObject.length()];
            FileReader filereader = new FileReader(file);
            int charsread = filereader.read(data);
            out.println(new String(data, 0 , charsread));
            filereader.close();
        %>