純 jsp 動作伺服器上的文字檔 [2]

來源:互聯網
上載者:User
js|伺服器

一行一行讀取資料

<%@ page contentType="text/html;charset=gb2312"%>
<%@ page import="java.io.*"%>
<html>
<head>
<title>檔案讀取</title>
</head>
<body>
<%
 String path=request.getRealPath("");//取得目前的目錄的路徑
 FileReader fr=new FileReader(path + "\\file\\inc\\t.txt");//建立FileReader對象,並執行個體化為fr
 BufferedReader br=new BufferedReader(fr);//建立BufferedReader對象,並執行個體化為br
 String Line=br.readLine();//從檔案讀取一行字串
 //判斷讀取到的字串是否不為空白
 while(Line!=null){
  out.println(Line + "<br>");//輸出從檔案中讀取的資料
  Line=br.readLine();//從檔案中繼續讀取一行資料
 }
 br.close();//關閉BufferedReader對象
 fr.close();//關閉檔案
%>
</body>
</html>

略過檔案中的字元不讀取

<%@ page contentType="text/html;charset=gb2312"%>
<%@ page import="java.io.*"%>
<html>
<head>
<title>略過位元組不讀取</title>
</head>
<body>
<%
String path=request.getRealPath(".");
FileReader fr=new FileReader(path + "\\ReadData.txt");
fr.skip(2);//跳過2個位元組
int c=fr.read();//讀取一個位元組
while(c!=-1){
 out.print((char)c);
 c=fr.read();
}
fr.close();
%>
</body>
</html>

將資料寫入檔案

<%@ page contentType="text/html;charset=gb2312"%>
<%@ page import="java.io.*"%>
<html>
<head>
<title>將資料寫入檔案</title>
</head>
<body>
<%
String path=request.getRealPath(".");
FileWriter fw=new FileWriter(path + "\\WriteData.txt");//建立FileWriter對象,並執行個體化fw
//將字串寫入檔案
fw.write("大家好!");
fw.write("本書是《JSP編程技巧》");
fw.write("請多多指教!");
fw.write("email:stride@sina.com");
fw.close();

FileReader fr=new FileReader(path + "\\WriteData.txt");
BufferedReader br=new BufferedReader(fr);//建立BufferedReader對象,並執行個體化為br
String Line=br.readLine();
//讀取一行資料
out.println(Line + "<br>");
br.close();//關閉BufferedReader對象
fr.close();
%>
</body>
</html>

將寫入檔案的資料分行
<%@ page contentType="text/html;charset=gb2312"%>
<%@ page import="java.io.*"%>
<html>
<head>
<title>將寫入檔案的資料分行</title>
</head>
<body>
<%
String path=request.getRealPath(".");
FileWriter fw=new FileWriter(path + "\\WriteData.txt");
BufferedWriter bw=new BufferedWriter(fw);
bw.write("大家好!");
bw.write("本書是《JSP編程技巧》。");
bw.newLine();//斷行
bw.write("請多多指教!");
bw.newLine();//斷行
bw.write("email: stride@sina.com");
bw.flush();//將資料更新至檔案
fw.close();//關閉檔案流
out.println("寫入檔案內容為:<br>");
FileReader fr=new FileReader(path + "\\WriteData.txt");
BufferedReader br=new BufferedReader(fr);
String Line=br.readLine();//讀取一行資料
while(Line!=null){
 out.println(Line + "<br>");
 Line=br.readLine();
}
fr.close();
%>
</body>
</html>

如何將資料追加寫入到檔案

<%@ page contentType="text/html;charset=gb2312"%>
<%@ page import="java.io.*"%>
<html>
<head>
<title>將寫入檔案的資料分行</title>
</head>
<body>
<%
String path=request.getRealPath(".");
RandomAccessFile rf=new RandomAccessFile(path + "\\WriteData.txt","rw");//定義一個類RandomAccessFile的對象,並執行個體化
rf.seek(rf.length());//將指標移動到檔案末尾
rf.writeBytes("\nAppend a line to the file!");
rf.close();//關閉檔案流
out.println("寫入檔案內容為:<br>");
FileReader fr=new FileReader(path + "\\WriteData.txt");
BufferedReader br=new BufferedReader(fr);//讀取檔案的BufferedRead對象
String Line=br.readLine();
while(Line!=null){
 out.println(Line + "<br>");
 Line=br.readLine();
}
fr.close();//關閉檔案
%>
</body>
</html>



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.