本文實(shí)例總結(jié)了JSP常見的文件操作。分享給大家供大家參考。具體如下:
JSP中的文件操作:FILE類
String path=request.getRealPath("/");//傳遞參數(shù)"/"可以返回web應(yīng)用根目錄
String tmp_path=path+"tmp";
File f1=new File(tmp_path);//創(chuàng)建FILE類,指定路徑為tmp_path
f1.mkdir();//創(chuàng)建目錄
File f2=new File(tmp_path,"a.txt");//創(chuàng)建FILE類,指定路徑為//tmp_path+"a.txt"
f2.createNewFile();//創(chuàng)建f2指定的文件
File f3=new File(tmp_path,"b.txt");
f3.createNewFile();
File f4=new File(tmp_path,"b.txt");
f4.createNewFile();
其中:
File對(duì)象的length()方法可以計(jì)算文件的大小
isFile()方法可以判斷是否為文件
isDirectory()方法可以判斷是否為文件夾
getName()可以得到文件文件夾的名字
canRead()是否可讀
canWrite()是否可寫
isHidden()是否隱藏
lastModified()最后修改日期,返回Date類的一個(gè)對(duì)象
文件的讀取
示例1:
String path=request.getRealPath("/");
File fp=new File(path,"file1.txt");//定義一個(gè)文件
FileInputStream fistream=new FileInputStream(fp);//定義一個(gè)文件輸入流綁定一個(gè)文件
byte buf[]=new byte[10000];
int bytesum=fistream.read(buf,0,10000)//把字節(jié)文件寫入到buf數(shù)組中,返回寫入的字節(jié)數(shù)
String str_file=new String(buf,0,bytesum);
out.println(str_file);
fistream.close();
示例2:
String path=request.getRealPath("/");
File fp=new File(path,"file1.txt");
FileReader freader=new FileReader(fp):
BufferedReader bfdreader=new BufferedReader(freader);
String str_line=bfdreader.readLine();
while(str_line!=null){
out.println(str_line);
out.println("br>");
str_line=bfdreader.readLine();
}
bfdreader.close();
freader.close();
文件的寫入:
示例1:
String path=request.getRealPath("/");
File fp=new File(path,"file2.txt");
FileWriter fwriter=new FileWriter(fp);
request.setCharacterEncoding("GBK");//設(shè)置字符編碼
String str_file=request.getParameter("textarea");
fwriter.write(str_file);
fwriter.close();
示例2:
String path=request.getRealPath("/");
File fp=new FIle(path,"file2.txt");
FileWriter fwriter=new FIleWriter(fp);
BufferedWriter bfwriter=new BufferedWriter(fwriter);
request.setCharacterEncoding("GBK");
String str_file=request.getParameter("textarea");
bfwriter.write(str_file,0,str_file.length());
bfwriter.flush();
bfwriter.close();
希望本文所述對(duì)大家的JSP程序設(shè)計(jì)有所幫助。
您可能感興趣的文章:- JSP實(shí)現(xiàn)遠(yuǎn)程文件下載保存到服務(wù)器指定目錄中的方法
- jsp中獲取當(dāng)前目錄的方法
- JSP 從配置文件獲取參數(shù)詳解
- JSP針對(duì)XML文件操作技巧實(shí)例分析
- JSP導(dǎo)出Excel文件的方法
- JSP實(shí)現(xiàn)快速上傳文件的方法
- JSP文件下載功能的4種方法
- jsp編程獲取當(dāng)前目錄下的文件和目錄及windows盤符的方法