JSP中讀文件與寫(xiě)文件的例子
發(fā)表時(shí)間:2024-02-16 來(lái)源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]<%@ 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>