Source Code : File: The Guest Book
Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com.
Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com.
Click Here or search from google with Libraries Name you get jar file related it
File: The Guest Book
<%@ page import="java.io.*" %>
<HTML>
<HEAD>
<TITLE>The Guest Book</TITLE>
</HEAD>
<BODY>
<H1>The Guest Book</H1>
Here are the current entries in the guest book:
<BR>
<BR>
<%
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();
%>
</BODY>
</HTML>
Thank with us