這篇文章主要介紹JSP中如何實(shí)現(xiàn)讀文件和寫文件,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
成都創(chuàng)新互聯(lián)是一家專注于成都做網(wǎng)站、網(wǎng)站設(shè)計(jì)、外貿(mào)營(yíng)銷網(wǎng)站建設(shè)與策劃設(shè)計(jì),南山網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)做網(wǎng)站,專注于網(wǎng)站建設(shè)十年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:南山等地區(qū)。南山做網(wǎng)站價(jià)格咨詢:18982081108讀文件的例子
***************************************************
<%@ page="" contenttype="text/html;charset=gb2312">
<%
//變量聲明
java.lang.String strFileName; //文件名
java.io.File objFile; //文件對(duì)象
java.io.FileReader objFileReader; //讀文件對(duì)象
char[] chrBuffer = new char[10]; //緩沖
int intLength; //實(shí)際讀出的字符數(shù)(一個(gè)中文為一個(gè)字符)
//設(shè)置待讀文件名
strFileName = "d: est.txt";
//創(chuàng)建文件對(duì)象
objFile = new java.io.File(strFileName);
//判斷文件是否存在
if(objFile.exists()){//文件存在
//創(chuàng)建讀文件對(duì)象
objFileReader = new java.io.FileReader(objFile);
//讀文件內(nèi)容
while((intLength=objFileReader.read(chrBuffer))!=-1){
//輸出
out.write(chrBuffer,0,intLength);
}
//關(guān)閉讀文件對(duì)象
objFileReader.close();
}
else{//文件不存在
out.println("下列文件不存在:"+strFileName);
}
%>
**************************************************
寫文件的例子
**************************************************
使用PrintWriter對(duì)象即可寫Text文件。
請(qǐng)參考以下示例:
<%@ page="" import="java.io.*">
<%
String str = "print me";
//always give the path from root. This way it almost always works.
String nameOfTextFile = "/usr/anil/imp.txt";
try {
PrintWriter pw = new PrintWriter(new FileOutputStream(nameOfTextFile));
pw.println(str);
//clean up
pw.close();
} catch(IOException e) {
out.println(e.getMessage());
}
%>
現(xiàn)在,打開imp.txt加以查看,字符串"print me"應(yīng)該已經(jīng)寫入。
以上是“JSP中如何實(shí)現(xiàn)讀文件和寫文件”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道!