当前位置: 首页 > 图文教程 > 网络编程 > JSP > 使用JavaBean,一句代码完成对文本文件读取和写入!!!

JSP
JAVA/JSP学习系列之三(Resin+Apache的安装)
JAVA/JSP学习系列之四(Orion App Server的安装)
JAVA/JSP学习系列之五(JDBC-ODBC翻页例子)
JAVA/JSP学习系列之六(MySQL翻页例子)
JAVA/JSP学习系列之七(Orion下自定义Tag)
JAVA/JSP学习系列之八(改写MySQL翻页例子)
一个开发人员眼中的JSP技术(上)
JSP教程(一)
JSP教程(二)
jsp留言板源代码四: 给jsp初学者.
jsp留言板源代码三: 给jsp初学者.
jsp留言板源代码二: 给jsp初学者.
jsp留言板源代码一: 给jsp初学者.
一个开发人员眼中的JSP技术(下)
JSP教程(七)-pluginAction的使用
JSP教程(六)-怎么在JSP中跳转到别一页面
JSP教程(五)-JSP Actions的使用下
JSP教程(四)-JSP Actions的使用
JSP教程(三)--JSP中”预定义变量”的使用
我认为JSP有问题(上)

JSP 中的 使用JavaBean,一句代码完成对文本文件读取和写入!!!


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-03   浏览: 213 ::
收藏到网摘: n/a

最近在做一个网站,需要对文本文件进行操作,本人为了方便,写了一个JavaBean文本,
在jsp页面里,只需要两句代码就能够同时完成对文本文件的读取和写入.

////////////JavaBean的代码如下......

package count;
import java.io.*;
public class OP_File
{
    public BufferedReader bufread;
    public BufferedWriter bufwriter;
    File writefile;
    String filepath,filecontent,read;
    String readStr="";
    
    public String readfile(String path)  //从文本文件中读取内容  
    {
     try
     {
     filepath=path;                      //得到文本文件的路径
     File file=new File(filepath);
     FileReader fileread=new FileReader(file);
     bufread=new BufferedReader(fileread);
     while((read=bufread.readLine())!=null)
     {
       readStr=readStr+read;
     }
     }catch(Exception d){System.out.println(d.getMessage());}
     return readStr;    //返回从文本文件中读取内容
    }
                     //向文本文件中写入内容
public void writefile(String path,String content,boolean append)     
    {
     try
     {
      boolean addStr=append; //通过这个对象来判断是否向文本文件中追加内容
      filepath=path;       //得到文本文件的路径
      filecontent=content; //需要写入的内容
      writefile=new File(filepath);
      if(writefile.exists()==false)    //如果文本文件不存在则创建它 
      {
          writefile.createNewFile();    
          writefile=new File(filepath);  //重新实例化
      }
      FileWriter filewriter=new FileWriter(writefile,addStr);
      bufwriter=new BufferedWriter(filewriter);
      filewriter.write(filecontent);
      filewriter.flush();
     }catch(Exception d){System.out.println(d.getMessage());}
    }
}


////////////////jsp文件
<%@ page contentType="text/html;charset=GB2312" %>
<%@ page import="java.io.*" %>
<html>
<head></head>
<body>
<jsp:useBean id="filecontrol" class="count.OP_File" scope="page"/>
<% 
 filecontrol.writefile("aa.txt","liuxiantong",false);
              //方法参数("路径","内容",true/false)--->是否追加
 String string=filecontrol.readfile("aa.txt");
              //方法:返回字符串 参数("路径")
 out.println(string);  //将读到的内容输出
%>
</body>
</html>