jsp遍曆檔案夾下的檔案的代碼

來源:互聯網
上載者:User

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()%>"

沒有環境 一次寫成的 難免有問題~~~~

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.