主页 > 知识库 > jsp文件操作之读取篇

jsp文件操作之读取篇

热门标签:服务器配置 检查注册表项 铁路电话系统 网站文章发布 智能手机 银行业务 美图手机 呼叫中心市场需求
文件操作是网站编程的重要内容之一,asp关于文件操作讨论的已经很多了,让我们来看看jsp中是如何实现的。
  这里用到了两个文件,一个jsp文件一个javabean文件,通过jsp中调用javabean可以轻松读取文本文件,注意请放置一个文本文件afile.txt到web根目录的test目录下,javabean文件编译后将class文件放到对应的class目录下(tomcat环境)。
Read.jsp

html>
head>
title>读取一个文件/title>
/head>
body bgcolor="#000000">
%--调用javabean --%>
jsp:useBean id="reader" class="DelimitedDataFile" scope="request">
jsp:setProperty name="reader" property="path" value="/test/afile.txt" />
/jsp:useBean>

h3>文件内容:/h3>

p>

% int count = 0; %>
% while (reader.nextRecord() != -1) { %>
% count++; %>
b>第% out.print(count); %>行:/b>
% out.print(reader.returnRecord()); %>br>    
% } %>
/p>
/body>
/html>


//DelimitedDataFile.java bean文件源代码
//导入java包
import java.io.*;
import java.util.StringTokenizer;

public class DelimitedDataFile
{

private String currentRecord = null;
private BufferedReader file;
private String path;
private StringTokenizer token;
//创建文件对象
public DelimitedDataFile()
{
     file = new BufferedReader(new InputStreamReader(System.in),1);
}
public DelimitedDataFile(String filePath) throws FileNotFoundException
{
    
     path = filePath;
     file = new BufferedReader(new FileReader(path));
}
     //设置文件路径
     public void setPath(String filePath)
        {
            
            path = filePath;
try {
file = new BufferedReader(new
FileReader(path));
} catch (FileNotFoundException e) {
            System.out.println("file not found");
            }
    
        }
//得到文件路径
     public String getPath() {
        return path;
}
//关闭文件
public void fileClose() throws IOException
{
    
     file.close();
}
//读取下一行记录,若没有则返回-1
public int nextRecord()
{
    
    
     int returnInt = -1;
     try
     {
     currentRecord = file.readLine();
     }
    
     catch (IOException e)
     {
     System.out.println("readLine problem, terminating.");
     }
    
     if (currentRecord == null)
     returnInt = -1;
     else
     {
     token = new StringTokenizer(currentRecord);
     returnInt = token.countTokens();
     }
     return returnInt;
}

    //以字符串的形式返回整个记录
public String returnRecord()
{

return currentRecord;
}
}


您可能感兴趣的文章:
  • jsp文件操作之追加篇
  • jsp文件操作之写入篇
  • JSP response对象实现文件下载的两种方式
  • jsp实现点击help打开chm文件
  • JSP加载JS文件不起作用的有效解决方法
  • jsp 文件下载示例代码
  • jsp中点击图片弹出文件上传界面及预览功能的实现
  • jsp文件上传与下载实例代码
  • JSP常见的文件操作小结

标签:长治 新疆 河南 沈阳 乐山 红河 上海 沧州

巨人网络通讯声明:本文标题《jsp文件操作之读取篇》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266