jsp+java类+servlet实现文件读取、写入的功能(一)
出自:淘特网
作者:淘特网
声明:转载请注明出处。
本文是根据tomcat(一个很好用的jsp运行平台)平台下实现而做,文件目录为:
tom_homewebapps
ews下: └html └web-inf └classes └com └fileman.class └fileservlet.class └web.xml(标准化越来越近了) |
首页我们先实现文件读取的类:fileman.java
//fileman.java 读写文件的一个类
package com;
import java.io.*;
public class fileman{
private string currentrecord = null;//保存文本的变量
private bufferedreader file; //bufferedreader对象,用于读取文件数据
private string path;//文件完整路径名
public fileman() {
}
//readfile方法用来读取文件filepath中的数据,并返回这个数据
public string readfile(string filepath) throws filenotfoundexception
{
path = filepath;
//创建新的bufferedreader对象
file = new bufferedreader(new filereader(path));
string returnstr =null;
try
{
//读取一行数据并保存到currentrecord变量中
currentrecord = file.readline();
}
catch (ioexception e)
{//错误处理
system.out.println("读取数据错误.");
}
if (currentrecord == null)
//如果文件为空
returnstr = "没有任何记录";
else
{//文件不为空
returnstr =currentrecord;
}
//返回读取文件的数据
return returnstr;
}
//写入文件
public void writefile(string filepath,string tempcon) throws filenotfoundexception
{
path = filepath;
try {
//创建printwriter对象,用于写入数据到文件中
printwriter pw = new printwriter(new fileoutputstream(filepath));
//用文本格式打印整数writestr
pw.println(tempcon);
//清除printwriter对象
pw.close();
} catch(ioexception e) {
//错误处理
system.out.println("写入文件错误"+e.getmessage());
}
}
/*下面这一般你可以用来测试java应用程序来读取文件,将前面的"//"去掉后你可以运行:java fileman 来测试。*/
//public static void main(string args[])
//{
//fileman fm=new fileman();
//try
//{
//fm.writefile("test.txt","asf");
//}
//catch(filenotfoundexception e){}
//}
}
上一篇: ASP.NET MVC 第一个程序 hello world
下一篇: JSP与PHP性能测试对比
推荐阅读
-
C#_Excel数据读取与写入_自定义解析封装类_支持设置标题行位置&使用excel表达式收集数据&单元格映射&标题映射&模板文件的参数数据替换(第二版-增加深度读取和更新功能)
-
Python实现的将文件每一列写入列表功能示例【测试可用】
-
jsp+java类+servlet实现文件读取、写入的功能(一)
-
【JavaWeb】一看就会的文件上传功能实现(附普通Servlet和SpringMVC完整实现代码)
-
jsp+java类+servlet实现文件读取、写入的功能(二)
-
jsp+java类+servlet实现文件读取、写入的功能(三)
-
C#_Excel数据读取与写入_自定义解析封装类_支持设置标题行位置&使用excel表达式收集数据&单元格映射&标题映射&模板文件的参数数据替换(第二版-增加深度读取和更新功能)
-
Python实现的将文件每一列写入列表功能示例【测试可用】
-
jsp+java类+servlet实现文件读取、写入的功能(一)
-
jsp+java类+servlet实现文件读取、写入的功能(三)