明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

JSP中讀文件與寫(xiě)文件的例子

[摘要]<%@ page import="java.io.*" %><html> <head> <title>Lion互動(dòng)網(wǎng)絡(luò)==》JSP中讀文件和寫(xiě)文件的例子</title> </head> <...
<%@ page import="java.io.*" %>

<html>
  <head>
    <title>Lion互動(dòng)網(wǎng)絡(luò)==》JSP中讀文件和寫(xiě)文件的例子</title>
  </head>
  <body>
   <%

//寫(xiě)文件
String str = "WWW.LIONSKY.NET";
String filename = request.getRealPath("lionsky.txt");
java.io.File f = new java.io.File(filename);
if(!f.exists())//如果文件不存,則建立
{
  f.createNewFile();
}

try
{
  PrintWriter pw = new PrintWriter(new FileOutputStream(filename));
  pw.println(str);//寫(xiě)內(nèi)容
  pw.close();
}
catch(IOException e)
{
  out.println(e.getMessage());
}

//讀文件
java.io.FileReader fr = new java.io.FileReader(f);
char[] buffer = new char[10];
int length; //讀出的字符數(shù)(一個(gè)中文為一個(gè)字符)
//讀文件內(nèi)容
out.write(filename+"<br>");
while((length=fr.read(buffer))!=-1)
{
  //輸出
  out.write(buffer,0,length);
}
fr.close();
%>

  </body>
</html>