所以用ENCTYPE="multipart/form-data",
結果, 檔案上載成功, 可是卻無法成功取得
内的field值.
在Google搜尋結果中, 看了幾個網站, 發現不少人碰過這樣的問題,
不過都得下載一些packet來解, 後來在sun網站上,
看到一個人的post說, 發現只要把參數一起放在action的url內,
就可抓到.
我就試了一下, 結果真的成功了.
記在這裡, 以後才不會忘記.
// 此處做法將modid及appid與action之url放在一起,
//可解決enctype為"multipart/form-data"時, 無法用
//request.getParameter()的方式取得參數值的問題.
//encode your parameters as part of the action URL,
//then the jsp servlet will be able to retrieve the values of those parameters.
example: