jsp文件操作之追加篇
程序员文章站
2023-12-19 12:28:28
文件操作是网站编程的重要内容之一,asp关于文件操作讨论的已经很多了,让我们来看看jsp中是如何实现的。 这里用到了两个文件,一个jsp文件一个javabean文件,通...
文件操作是网站编程的重要内容之一,asp关于文件操作讨论的已经很多了,让我们来看看jsp中是如何实现的。
这里用到了两个文件,一个jsp文件一个javabean文件,通过jsp中调用javabean可以轻松追加数据到文本文件,如果大家读了上写入篇的话,会发现这篇文章同上一篇有很多相似之处,读起来也很容易了。
注意请放置一个文本文件afile.txt到web根目录的test目录下,以便程序追加数据,javabean文件编译后将class文件放到对应的class目录下(tomcat环境)。
writeappend.jsp
<html>
<head>
<title>追加数据</title>
</head>
<body bgcolor="#000000">
<%--创建javabean并设置属性 --%>
<jsp:usebean id="writer" class="writeappend" scope="request">
<jsp:setproperty name="writer" property="path" value="/path/to/afile.txt" />
<jsp:setproperty name="writer" property="something" value="初始化something属性" />
</jsp:usebean>
<h3>追加数据</h3>
<p>
<%--设置要追加的字符串 --%>
<% writer.setsomething("追加数据"); %>
<%--读取上面设置的字符串 --%>
<% out.print(writer.getsomething()); %>
<%--调用writer的writesomething方法追加文件并返回成功或者出错信息 --%>
<% out.print(writer.writesomething()); %>
</p>
</body>
</html>
//writeappend.java javabean文件
import java.io.*;
public class writeappend {
private string path;//文件路径
private string something;//追加的字符串变量
//初始化
public writeappend() {
path = null;
something = "default message";
}
//设置文件路径
public void setpath(string apath) {
path = apath;
}
//得到文件路径
public string getpath() {
return path;
}
//设置要追加的字符串
public void setsomething(string asomething) {
something = asomething;
}
//得到要追加的字符串
public string getsomething() {
return something;
}
//追加字符串
public string writesomething() {
try {
//创建文件path并写入something字符串,注意和写入篇的区别
filewriter thefile = new filewriter(path,true);
printwriter out = new printwriter(thefile);
out.print(something + "
");
out.close();
//关闭文件并返回success字符串
thefile.close();
return "success!!";
} catch (ioexception e) {
return e.tostring();
}
}
}
好了,到此文件操作的全部内容都完成了,如果您看到这里,相信您对文件基本操作已经ok了。
这里用到了两个文件,一个jsp文件一个javabean文件,通过jsp中调用javabean可以轻松追加数据到文本文件,如果大家读了上写入篇的话,会发现这篇文章同上一篇有很多相似之处,读起来也很容易了。
注意请放置一个文本文件afile.txt到web根目录的test目录下,以便程序追加数据,javabean文件编译后将class文件放到对应的class目录下(tomcat环境)。
writeappend.jsp
<html>
<head>
<title>追加数据</title>
</head>
<body bgcolor="#000000">
<%--创建javabean并设置属性 --%>
<jsp:usebean id="writer" class="writeappend" scope="request">
<jsp:setproperty name="writer" property="path" value="/path/to/afile.txt" />
<jsp:setproperty name="writer" property="something" value="初始化something属性" />
</jsp:usebean>
<h3>追加数据</h3>
<p>
<%--设置要追加的字符串 --%>
<% writer.setsomething("追加数据"); %>
<%--读取上面设置的字符串 --%>
<% out.print(writer.getsomething()); %>
<%--调用writer的writesomething方法追加文件并返回成功或者出错信息 --%>
<% out.print(writer.writesomething()); %>
</p>
</body>
</html>
//writeappend.java javabean文件
import java.io.*;
public class writeappend {
private string path;//文件路径
private string something;//追加的字符串变量
//初始化
public writeappend() {
path = null;
something = "default message";
}
//设置文件路径
public void setpath(string apath) {
path = apath;
}
//得到文件路径
public string getpath() {
return path;
}
//设置要追加的字符串
public void setsomething(string asomething) {
something = asomething;
}
//得到要追加的字符串
public string getsomething() {
return something;
}
//追加字符串
public string writesomething() {
try {
//创建文件path并写入something字符串,注意和写入篇的区别
filewriter thefile = new filewriter(path,true);
printwriter out = new printwriter(thefile);
out.print(something + "
");
out.close();
//关闭文件并返回success字符串
thefile.close();
return "success!!";
} catch (ioexception e) {
return e.tostring();
}
}
}
好了,到此文件操作的全部内容都完成了,如果您看到这里,相信您对文件基本操作已经ok了。