<%@ page import="java.io.*" %>
The Guest Book
The Guest Book
Here are the current entries in the guest book:
<%
String file = application.getRealPath("/") + "test.txt";
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();
%>