1. dto 類中寫好 private formfile formfiletaobao=null; 屬性。
2.jsp 頁面中file對應的寫好屬性的名稱 如:選擇檔案:
3.注意form中的屬性設定,
例如:4.然後在寫action類
***x xx=(***x)form; //轉換dto類物件。
formfile formfile=xx.getformfiletaobao();
//這個獲得路徑,小記一下
string uploadpath=request.getsession().getservletcontext().getrealpath("/").replace("\\", "/")+"/tempupload/taobao";
//呼叫上傳檔案的方法
bpo.upfiletemp(formfile,uploadpath);
....action 類中基本這樣。然後在邏輯bpo類中上傳檔案。
5.在邏輯bpo類中上傳檔案
/*** 檔案上傳功能
* @param formfile
* @param uploadpath
* @return
* @author xiongxing
* @date 20111029
*/public boolean upfiletemp(formfile formfile, string uploadpath)
// 上傳檔案路徑加檔名。
string filenamepath = uploadpath + "/" + formfile.getfilename();
try
return true;
} catch (exception e)
} //有問題希望大家指正,或者更好的改良,謝謝。
學習札記 Struts1 檔案上傳
public class myfileupload extends action catch exception ioe request.setattribute filename uploadsuccessfilename return forward 其實算不上是struts1了 而是commo...
學習struts1(配置檔案)
最近在用struts1與oracle資料庫一起做東西,在工作中發現自己原來還是乙個菜鳥,有許多東西還要去學,邊學邊用,一步一步往前走呀,不多說了,今天總結了struts1的核心配置檔案 struts config.xml。我也是在學習總結,有什麼說的不對的地方,還希望大家給我指出來呀。action類...
struts1學習筆記1
1.struts是mvc模式的經典應用。它主要是提供乙個好的控制器和一套定製的標籤庫 優點 結構層次分明,高重用性。2.開發環境搭建 建立乙個struts1的工程,匯入struts1的jar包 在web inf目錄中新增乙個struts config.xml,配置web.xml檔案中新增處理stru...