首页 新闻 会员 周边 捐助

jsp实现用流变量上传图片 input file上传代码(如果有实现的代码发一下,谢谢了!)

0
悬赏园豆:80 [已关闭问题] 关闭于 2015-06-05 10:07

 int pos;  

pos=file.indexOf("filename=\"");  

pos=file.indexOf("\n",pos)+1;  

pos=file.indexOf("\n",pos)+1;  

pos=file.indexOf("\n",pos)+1;  

int boundarylocation=file.indexOf(boundary,pos)-4;  

int startpos=((file.substring(0,pos)).getBytes()).length;  

int endpos=((file.substring(0,boundarylocation)).getBytes()).length;

 

File checkFile=new File(fileName);  

if(checkFile.exists()){//如果文件已经存在则删除   checkFile.delete();  }  

File fileDir=new File(rootPath);  

if(!fileDir.exists()){   fileDir.mkdirs();  }  

fileOut=new FileOutputStream(fileName);  

fileOut.write(dataBytes,startpos,(endpos-startpos));  

fileOut.close();

String get_id=session.getAttribute("set_id").toString();  

inf.setId(get_id);  

session.removeAttribute("set_id");  

inf.setPicture(str_write);  

boolean tts=inf.update_picture();

范亚平的主页 范亚平 | 初学一级 | 园豆:112
提问于:2015-06-02 16:09
< >
分享
清除回答草稿
   您需要登录以后才能回答,未注册用户请先注册