从SmartUpload到FileUpload的无缝转移 - 编程入门网
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-06-22
t+"", item); } } } } catch (FileUploadException e) { e.printStackTrace(); } } /**函誼燕汽圷殆峙。**/ public String getParameter(String s) { return this.getParameter(s,this.pencoding); } /**函誼燕汽圷殆峙。辛參僉夲園鷹圭塀?功象勧弓狛栖議栖譜協 **/ public String getParameter(String s,String encode) { if(s == null) throw new IllegalArgumentException("燕汽兆忖涙 丼!!!"); Hashtable one = (Hashtable)parameters.get(s); if(one==null) return null; String returnvalue=(String)one.get(new Integer(0)); if(returnvalue==null) returnvalue=""; try { returnvalue=new String(returnvalue.getBytes("ISO-8859 -1"),encode); } catch (UnsupportedEncodingException e) { e.printStackTrace(); return null; } if(returnvalue == null) return null; else return returnvalue; } public String[] getParameterValues(String s) { if(s == null) throw new IllegalArgumentException("Form''s name is invalid or does not exist (1305)."); Hashtable hashtable = (Hashtable)this.parameters.get (s); if(hashtable == null) return null; String as[] = new String[hashtable.size()]; for(int i = 0; i < hashtable.size(); i++) as[i] = (String)hashtable.get(new Integer(i)); return as; } public SmartUpload getRequest() { return this; } public Enumeration getParameterNames() { return this.parameters.keys(); } public SmartUpload getFiles() { return this; } public int getCount() //卦指現周倖方 { return files.size(); } public int getFCount() //卦指現周倖方 { return getCount(); } public String getUFileName(int aa) { //aa燕幣及叱倖現周?卦指貧勧現周議兆忖 FileItem item=(FileItem)files.get(aa+""); String fileName = item.getName(); fileName = fileName.substring(fileName.lastIndexOf ("\\")+1); return fileName; } public String getFieldNames(int aa) //卦指現周燕汽囃議 name { FileItem item=(FileItem)files.get(aa+""); return item.getFieldName(); } public String getUgetContentType(int aa) { // aa燕幣及叱倖現周?卦指現周議鯉塀?曳泌doc?xml?mp3 FileItem item=(FileItem)files.get(aa+""); return item.getContentType(); } public InputStream getUFileInputStream(int aa) throws IOException//卦指補秘送 { FileItem item=(Fil |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于从SmartUpload到FileUpload的无缝转移 - 编程入门网的所有评论