DisplayFile.java
//*********************************
File parentDirectory = null;//目前的目錄
ArrayList [] file = null;//存放目前的目錄中所有的檔案
ArrayList [] directory = null;//存放目前的目錄中所有的目錄
String [] temp = null;//臨時數組 存放目前的目錄中所有的檔案和目錄的絕對路徑加完整名字的字串
File tempFile = null;
if(request.getParameter("directory")==null)
{
parentDirectory = new File("C://temp");//第一次使用SERVLET為訪問對象 使用預設目錄
}
else
{
//第二次或者以後訪問的時候 使用頁面提交的目錄為預設目錄
parentDirectory = new File(request.getParameter("directory"));//
}
temp = parentDirectory.list();//提取目前的目錄中所有的檔案和目錄的絕對路徑加完整名字的字串
for(int i = 0 ; i<list.length() ; i++ ){
//進行判斷 是目錄的放入directory集合中 檔案的放入file集合中
tempFile = new File(temp)
if(tempFile.isDirectory())
directory.add(tempFile);
else
file.add(tempFile);
}
//*********************************
然後在JSP頁面中使用那兩個集合顯示出目錄和檔案 目錄可以使用超級串連 再次調用上面的Servlet
"DisplayFile?directory=<%((File)file.get(i)).getName()%>"
沒有環境 一次寫成的 難免有問題~~~~