编程开发 > JSP > 文章内容

jsp复习资料(16)

2017-1-20编辑:ljnbset

读取操作
 例子:
        <html>
     <head>
  <title>读取文件</title>
     </head>
     <body>
  <jsp:useBean id="myReader" scope="page" class="fileTool.readFile"/>
  <% myReader.toFile("theday.txt"); %>
  <% while ((String s=myReader.readRecord())!=null) {
   System.out.println(s);
     }
  %>
     </body>
 </html>

 readFile.java
 package fileTool;
        import  java.io.*;
 public class readFile {
  FileReader in;
  public void toFile(String filename) {
   File file1=new File(filename);
   in=new FileReader(file1);
  }
  public String readRecord(void) {
   return in.readLine();
  }
 }

jsp复习资料(15)

热点推荐

登录注册
触屏版电脑版网站地图