request.getParameter后台为什么取到null值
展开全部
你现在的表单上传格式是:enctype=“multipart/form-data”
在这种格式下不起作用request.getParameter()
for(FileItem e : fileitem) {
if(e.isFormField()){
if(e.getFieldName().equals("name")){
name =e.getString("UTF-8"); //注意,你从这里才能取到值
//UTF-8是你上传页面的编码格式,防止中文乱码,
//对也这种类型的表单提交数据,setCharacterEncoding也是不起作用的
} else if(!e.isFormField()){
ServletContext sct = getServletContext();
File file = new File(sct.getRealPath("upload")+"\\"+e.getName());
e.write(file);
}
在这种格式下不起作用request.getParameter()
for(FileItem e : fileitem) {
if(e.isFormField()){
if(e.getFieldName().equals("name")){
name =e.getString("UTF-8"); //注意,你从这里才能取到值
//UTF-8是你上传页面的编码格式,防止中文乱码,
//对也这种类型的表单提交数据,setCharacterEncoding也是不起作用的
} else if(!e.isFormField()){
ServletContext sct = getServletContext();
File file = new File(sct.getRealPath("upload")+"\\"+e.getName());
e.write(file);
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询