一、檔案上傳
上傳檔案是Web開發中經常要用到的功能:例如在基於B/S的人事資訊管理系統中上傳照片,在新聞發布系統中上傳圖片等等。。。。。要實現檔案上傳功能,就需要綜合利用java中的檔案輸入和輸出相關的類。
在TCP/IP中,最早出現的檔案上傳機制是FTP。它是將檔案由客服端發送到伺服器的標準機制,能夠考慮到跨平台的文本和二進位格式檔案。但是在jsp編程中不能使用FTP方法來上傳檔案,這是由jsp 運行機制所決定的。
下面是上傳檔案的jsp頁面:
複製代碼 代碼如下:
<form action="file?file=upload" method="post" enctype="multipart/form-data">
請選擇你要上傳的檔案:<input type="file" name="upload" siez="16"><br>
<input type="submit" value="提交">
</form>
對於檔案上傳表單處理其中method必須為post,也要增加類型enctype="multipart/form-data"。這樣就可以把檔案中的資料作為流式資料上傳。當然無論是什麼檔案格式,均可以。。。
下面是servlet 處理常式:
複製代碼 代碼如下:
//接收上傳檔案內容中臨時檔案的檔案名稱
String tempFileName = new String("tempFileName");
//tempfile 對象指向臨時檔案
File tempFile = new File("D:/"+tempFileName);
//outputfile 檔案輸出資料流指向這個臨時檔案
FileOutputStream outputStream = new FileOutputStream(tempFile);
//得到客服端提交的所有資料
InputStream fileSourcel = request.getInputStream();
//將得到的客服端資料寫入臨時檔案
byte b[] = new byte[1000];
int n ;
while ((n=fileSourcel.read(b))!=-1){
outputStream.write(b,0,n);
}
//關閉輸出資料流和輸入資料流
outputStream.close();
fileSourcel.close();
//randomFile對象指向臨時檔案
RandomAccessFile randomFile = new RandomAccessFile(tempFile,"r");
//讀取臨時檔案的第一行資料
randomFile.readLine();
//讀取臨時檔案的第二行資料,這行資料中包含了檔案的路徑和檔案名稱
String filePath = randomFile.readLine();
//得到檔案名稱
int position = filePath.lastIndexOf('\\');
CodeToString codeToString = new CodeToString();
String filename = codeToString.codeString(filePath.substring(position,filePath.length()-1));
//重新置放讀取檔案指標到檔案頭
randomFile.seek(0);
//得到第四行斷行符號符的位置,這是上傳檔案資料的開始位置
long forthEnterPosition = 0;
int forth = 1;
while((n=randomFile.readByte())!=-1&&(forth<=4)){
if(n=='\n'){
forthEnterPosition = randomFile.getFilePointer();
forth++;
}
}
//產生上傳檔案的目錄
File fileupLoad = new File("D:/work space/JSP workspace/jsp_servlet_upAndLoad/file","upLoad");
fileupLoad.mkdir();
//saveFile 對象指向要儲存的檔案
File saveFile = new File("D:/work space/JSP workspace/jsp_servlet_upAndLoad/file/upLoad",filename);
RandomAccessFile randomAccessFile = new RandomAccessFile(saveFile,"rw");
//找到上傳檔案資料的結束位置,即倒數第四行
randomFile.seek(randomFile.length());
long endPosition = randomFile.getFilePointer();
int j = 1;
while((endPosition>=0)&&(j<=4)){
endPosition--;
randomFile.seek(endPosition);
if(randomFile.readByte()=='\n'){
j++;
}
}
//從上傳檔案資料的開始位置到結束位置,把資料寫入到要儲存的檔案中
randomFile.seek(forthEnterPosition);
long startPoint = randomFile.getFilePointer();
while(startPoint<endPosition){
randomAccessFile.write(randomFile.readByte());
startPoint = randomFile.getFilePointer();
}
//關閉檔案輸入、輸出
randomAccessFile.close();
randomFile.close();
tempFile.delete();
其中CodeToString()方法是一個中文字元處理的方法。如果檔案不進行編碼轉換,則上傳後的檔案名稱將會是亂碼,接收的檔案資料也會是亂碼:
下面是CodeToString()原始碼:
複製代碼 代碼如下:
//處理中文字串的函數
public String codeString(String str){
String s = str;
try {
byte[] temp = s.getBytes("utf-8");
s = new String(temp);
return s ;
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
return s;
}
}
二:檔案下載
實現檔案下載的最簡單的方法就是使用超連結。假設在伺服器上web目錄下地upload子目錄存在user.doc這個文檔。如:
<a href="http://localhost:8080/upload/user.doc">下載user.doc</a>
當單擊這個超級連結時,將會在瀏覽器中直接開啟這個文檔,就像是把word軟體嵌入在瀏覽器中一樣。
開啟文檔後就可以實現另存新檔了。當然在web上,最常見的方式是單擊連結後,出現“另存新檔”對話方塊:
複製代碼 代碼如下:
//擷取要下載的檔案名稱
String filename = request.getParameter("name");
//得到想客服端輸出的輸出資料流
OutputStream outputStream = response.getOutputStream();
//輸出檔案用的位元組數組,每次向輸出資料流發送600個位元組
byte b[] = new byte[600];
//要下載的檔案
File fileload = new File("D:/work space/JSP workspace/jsp_servlet_upAndLoad/file/upLoad",filename);
//客服端使用儲存檔案的對話方塊
response.setHeader("Content-disposition", "attachment;filename="+filename);
//通知客服檔案的MIME類型
response.setContentType("application/msword");
//通知客服檔案的長度
long fileLength = fileload.length();
String length = String.valueOf(fileLength);
response.setHeader("Content_length", length);
//讀取檔案,並發送給客服端下載
FileInputStream inputStream = new FileInputStream(fileload);
int n = 0;
while((n=inputStream.read(b))!=-1){
outputStream.write(b,0,n);
}
在該程式中,response對象的setContentType()用來定義伺服器發送給客服端內容的MIME類型。這裡對MIME就不特別介紹了。事實上,凡是瀏覽器能處理的所有資源都有對應的MIME資源類型。在與伺服器的互動中,瀏覽器就是對html、jsp等檔案瀏覽器直接將其開啟。對於word、excel等瀏覽器自身不能開啟的檔案則調用相應的方法。對於沒有標記MIME類型的檔案。瀏覽器則根據其副檔名和檔案內容猜測其類型。。。