在JSP中建立檔案夾和檔案

來源:互聯網
上載者:User

在JSP中判斷某檔案是否存在,並建立檔案夾和檔案。

備忘。

在WinXP + Tomcat5.1 中,代碼如下:

<%

    //得到web根路徑//絕對路徑
    //getServletContext().getRealPath("/")得到web應用的根路徑
    // D:/web/excel,“D:/web”是web應用的根路徑,“excel”是根目錄下的檔案夾
    String Save_Location=getServletContext().getRealPath("/")+"excel//";

    try{
          if (!(new java.io.File(Save_Location).isDirectory())) //如果檔案夾不存在
           {
                  new java.io.File(Save_Location).mkdir();      //不存在 excel 檔案夾,則建立此檔案夾
                  new java.io.File(Save_Location)+"gmcc//").mkdir();    //建立excel檔案夾下名為 gmcc 的檔案夾
           }
           else  //存在excel檔案夾,則直接建立此檔案夾
           {   
                  new java.io.File(Save_Location)+"gmcc//").mkdir();     //建立 excel 檔案夾下名為gmcc的檔案夾
           }
      }catch(Exception e){
        e.printStackTrace();        //建立檔案夾失敗  

        //在連結中使用URLEncoder編碼,傳遞中文參數。
        //接收頁面可以使用getParameter()取得該參數,頁面的charset=GB2312。
        String ErrName=java.net.URLEncoder.encode("檔案夾不存在。建立檔案夾出錯!");
        response.sendRedirect("errorpage.jsp?error="+ErrName);        //跳轉到錯誤頁面
        return;
    }

    //在 gmcc 檔案夾下建立 myfile.txt 檔案
    java.io.File myFile = new java.io.File(Save_Location+"gmcc//myfile.txt");
    java.io.FileOutputStream fout = null;
    try {
            fout = new java.io.FileOutputStream(myFile);
            byte b[]= "你好!".getBytes();
            fout.write(b);
            fout.flush();  //寫入檔案
            fout.close();  //關閉
    }
    catch (java.io.FileNotFoundException e) {
          e.printStackTrace();
    }
    catch (java.io.IOException ex) {
          ex.printStackTrace();
    }

 %>

                                                                                                             J.R.Q.

                                                                                                            2005.11.17  於穗

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.