|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
java是一种面向对象的编程语言,优点是可移植性比较高,最初设计时就是本着一次编写到处执行设计的。可以开发各种应用程序和游戏,不过速度没有c++快,所以一般是不用java来编写应用程序和电脑游戏。js
文件操纵是网站编程的主要内容之一,asp关于文件操纵会商的已良多了,让我们来看看jsp中是怎样完成的。
这里用到了两个文件,一个jsp文件一个javabean文件,经由过程jsp中挪用javabean能够轻松读取文本文件,注重请安排一个文本文件afile.txt到web根目次的test目次下,javabean文件编译后将class文件放到对应的class目次下(tomcat情况)。
Read.jsp
<html>
<head>
<title>读取一个文件</title>
</head>
<bodybgcolor="#000000">
<%--挪用javabean--%>
<jsp:useBeanid="reader"class="DelimitedDataFile"scope="request">
<jsp:setPropertyname="reader"property="path"value="/test/afile.txt"/>
</jsp:useBean>
<h3>文件内容:</h3>
<p>
<%intcount=0;%>
<%while(reader.nextRecord()!=-1){%>
<%count++;%>
<b>第<%out.print(count);%>行:</b>
<%out.print(reader.returnRecord());%><br>
<%}%>
</p>
</body>
</html>
//DelimitedDataFile.javabean文件源代码
//导进java包
importjava.io.*;
importjava.util.StringTokenizer;
publicclassDelimitedDataFile
{
privateStringcurrentRecord=null;
privateBufferedReaderfile;
privateStringpath;
privateStringTokenizertoken;
//创立文件对象
publicDelimitedDataFile()
{
file=newBufferedReader(newInputStreamReader(System.in),1);
}
publicDelimitedDataFile(StringfilePath)throwsFileNotFoundException
{
path=filePath;
file=newBufferedReader(newFileReader(path));
}
//设置文件路径
publicvoidsetPath(StringfilePath)
{
path=filePath;
try{
file=newBufferedReader(new
FileReader(path));
}catch(FileNotFoundExceptione){
System.out.println("filenotfound");
}
}
//失掉文件路径
publicStringgetPath(){
returnpath;
}
//封闭文件
publicvoidfileClose()throwsIOException
{
file.close();
}
//读取下一行纪录,若没有则前往-1
publicintnextRecord()
{
intreturnInt=-1;
try
{
currentRecord=file.readLine();
}
catch(IOExceptione)
{
System.out.println("readLineproblem,terminating.");
}
if(currentRecord==null)
returnInt=-1;
else
{
token=newStringTokenizer(currentRecord);
returnInt=token.countTokens();
}
returnreturnInt;
}
//以字符串的情势前往全部纪录
publicStringreturnRecord()
{
returncurrentRecord;
}
}
在1995年5月23日以“Java”的名称正式发布了。 |
|