`
zhangfan822
  • 浏览: 256771 次
  • 性别: Icon_minigender_1
  • 来自: 长沙
社区版块
存档分类
最新评论

httpclient 上传中文名文件

阅读更多
/**
	 * @category 从本地上传文件到服务器
	 * TODO 从本地上传文件到服务器
	 * @param ServerPath	报表服务器地址
	 * @param fileName		需上传的报表文件名
	 * @param LocalPath		报表所在本地路径
	 * @return outString	状态注记~状态信息
	 */
	public static String UpLoadFileFromLocalToServer(String ServerPath,String fileName,String LocalPath,String PathOnServer){
		String outString = "";
		HttpClient client = new HttpClient();
        MultipartPostMethod mPost = new MultipartPostMethod();
        client.setConnectionTimeout(8000);
        String url = ServerPath + "/FileUpload.jsp";
        try {
        	// Send any XML file as the body of the POST request
        	File l = new File(LocalPath);
        	String p = l.getPath();
        	String n = l.getName();
        	int index = p.lastIndexOf(n);
        	LocalPath = LocalPath.substring(0,index);
        	String fullfileName = LocalPath + File.separatorChar + fileName;
        	
        	//fileName = PathOnServer + File.separatorChar + fileName;
        	fileName = fileName.replaceAll("\\\\", "/").replaceAll("//","/");
        	System.out.println(fileName);
			fileName = fileName.replaceAll("\\\\", "/").replaceAll("//","/");
			
            File file = new File(fullfileName);
//            
            mPost.addParameter(file.getName(), fileName, file);
	        FilePart filePart = new FilePart("file",file);
			mPost.addPart(filePart);

			mPost.getParams().setContentCharset("UTF-8");
            mPost.setURI(new URI(url,false,"UTF-8"));
            
	        int statusCode = client.executeMethod(mPost);
	        if (statusCode == HttpStatus.SC_OK) {
				String strResponse = mPost.getResponseBodyAsString().trim();
				System.out.println("statusLine>>>1" + strResponse.trim());
				if(strResponse.indexOf("Upload Success!!")!=-1){
					outString = "true~发布成功";
					System.out.println("statusLine>>>2" + outString);
				}else if(strResponse.indexOf("Upload Failed!!")!=-1){
					outString = "false~发布失败";
					System.out.println("statusLine>>>3" + outString);
				}
			}
		} catch (HttpException e) {
			outString = "false~网络通信失败";
			// TODO Auto-generated catch block
			// e.printStackTrace();
		} catch (IOException e) {
			outString = "false~报表服务未开启或文件读取失败";
			// TODO Auto-generated catch block
			// e.printStackTrace();
		}finally{
			mPost.releaseConnection();
	    }
        return outString;
	}


FileUpload.jsp

<%@ page contentType="text/html;charset=utf-8"%>
<%@ page import="java.io.*"%>
<%@ page import="org.apache.commons.fileupload.DiskFileUpload"%>
<%@ page import="org.apache.commons.fileupload.FileItem"%>
<%@ page import="java.util.List"%>
<%@ page import="java.util.Iterator"%>
<%@ page import="java.io.File"%>
<%
	boolean flag = false;
	//request.setCharacterEncoding("utf-8");
	try{
		DiskFileUpload diskFileUpload = new DiskFileUpload();
		diskFileUpload.setHeaderEncoding("utf8");
		///设置可上传文件的最大尺寸
		diskFileUpload.setSizeMax(1234556677);
		//设置缓冲区大小,这里是2kb
		diskFileUpload.setSizeThreshold(2048);
		//设置临时目录
		diskFileUpload.setRepositoryPath("");
		//获取所有文件
		List<FileItem> items = diskFileUpload.parseRequest(request);// 得到所有的文件
		Iterator<FileItem> i = items.iterator();
		while (i.hasNext()){
			FileItem fi = (FileItem) i.next();
			System.out.println("fi.getName()"+fi.getName());
			String fileName = fi.getName();//new String(fi.getName().getBytes("gbk"),"utf-8");
			File l = new File(fileName);
			String fn = l.getName();
			String uploadPath = l.getPath();
			//System.out.println("fn"+fn);
			uploadPath = uploadPath.substring(0,uploadPath.lastIndexOf(fn));
			System.out.println("uploadPath1"+uploadPath);
			uploadPath = application.getRealPath("/") + uploadPath;
			File up = new File(uploadPath);
			if(!up.exists()){
				up.mkdirs();
			}
			if (fileName != null){
				File fullFile = new File(fn);
				File savedFile = new File(uploadPath, fullFile.getName());
				fi.write(savedFile);
			}
		}
		flag = true;
	}catch (Exception e){
		System.out.println(e.getMessage());
	}	
	if(flag){
		out.println("Upload Success!!");
	}else{
		out.println("Upload Failed!!");
	}
%>

关于httpclient乱码问题我改写了源码
改写的地方
org.apache.commons.httpclient.util.EncodingUtil

 public static byte[] getAsciiBytes(final String data) {

        if (data == null) {
            throw new IllegalArgumentException("Parameter may not be null");
        }

        try {
            return data.getBytes("UTF-8");
        } catch (UnsupportedEncodingException e) {
            throw new HttpClientError("HttpClient requires ASCII support");
        }
    }

org.apache.commons.httpclient.methods.multipart.StringPart
 public StringPart(String name, String value, String charset) {
        
        super(
            name,
            DEFAULT_CONTENT_TYPE,
            charset == null ? "UTF-8" : charset,
            DEFAULT_TRANSFER_ENCODING
        );
        if (value == null) {
            throw new IllegalArgumentException("Value may not be null");
        }
        if (value.indexOf(0) != -1) {
            // See RFC 2048, 2.8. "8bit Data"
            throw new IllegalArgumentException("NULs may not be present in string parts");
        }
        this.value = value;
    }

org.apache.commons.httpclient.methods.multipart.FilePart
 public FilePart(String name, PartSource partSource, String contentType, String charset) {
        
        super(
            name, 
            contentType == null ? DEFAULT_CONTENT_TYPE : contentType, 
            charset == null ? "UTF-8" : charset, 
            DEFAULT_TRANSFER_ENCODING
        );

        if (partSource == null) {
            throw new IllegalArgumentException("Source may not be null");
        }
        this.source = partSource;
    }
分享到:
评论
2 楼 旋风小皮皮 2012-12-18  
旋风小皮皮 写道
我运行的代码为什么jsp接收的 items 为空呢?求指教

找到原因了,呵呵~
下面两个参考帖子
http://bbs.csdn.net/topics/310001528
http://auzll.iteye.com/blog/919981
1 楼 旋风小皮皮 2012-12-18  
我运行的代码为什么jsp接收的 items 为空呢?求指教

相关推荐

    .net core3.1 WebAPI使用HttpClient为企业微信上传临时素材

    asp.net core3.1 webAPI对接企业微信上传临时素材,返回media_id. 来自于实际项目;

    redis视频分块上传

    文件内容中提到了一个Java类名为`TestUploadController`,它涉及到的Java编程知识包括对HTTP协议的了解、使用Apache HTTPComponents客户端库、文件上传、以及如何构造多部分请求体。其中,`MultipartEntityBuilder`...

    基于SpringMVC的一个web框架

    版本管理,服务根路径工具类,文件上传工具类 1.0.10 集成ueditor在线编辑器 1.0.11 地址联动 1.0.12 Excel工具类 Word工具类 Java NIO实现socket工具类 分布式session jdk升级到1.7 嵌入式redis服务(只支持linux) ...

    基于Spring MVC的web框架 1.1.11

    版本管理,服务根路径工具类,文件上传工具类 1.0.10 集成ueditor在线编辑器 1.0.11 地址联动 1.0.12 Excel工具类 Word工具类 Java NIO实现socket工具类 分布式session jdk升级到1.7 嵌入式redis服务(只支持linux) ...

    一个可以直接运行的基于SpringMVC的web框架1.1.12

    版本管理,服务根路径工具类,文件上传工具类 1.0.10 集成ueditor在线编辑器 1.0.11 地址联动 1.0.12 Excel工具类 Word工具类 Java NIO实现socket工具类 分布式session jdk升级到1.7 嵌入式redis服务(只支持linux) ...

    可以直接运行的基于SpringMVC的web框架示例,也可以直接当公司框架

    版本管理,服务根路径工具类,文件上传工具类 1.0.10 集成ueditor在线编辑器 1.0.11 地址联动 1.0.12 Excel工具类 Word工具类 Java NIO实现socket工具类 分布式session jdk升级到1.7 嵌入式redis服务(只支持linux) ...

    SpringMVC基础上的web框架

    版本管理,服务根路径工具类,文件上传工具类 1.0.10 集成ueditor在线编辑器 1.0.11 地址联动 1.0.12 Excel工具类 Word工具类 Java NIO实现socket工具类 分布式session jdk升级到1.7 嵌入式redis服务(只支持linux) ...

    httpmime-4.3.6.rar

    在处理文件上传时,HTTPMIME框架提供了一个名为MultipartEntityBuilder的类,用于构建多部分的HTTP实体。通过这个类,你可以轻松地添加多个部分,每个部分可以是文本、二进制数据或者是其他复杂类型。例如,如果你...

    elasticsearch-analysis-ik-5.6.12.zip

    用户可以将此压缩包直接上传到Elasticsearch服务器,解压后即可使用,无需复杂的配置步骤。 在压缩包"elasticsearch-analysis-ik-5.6.12.zip"中,包含了以下关键文件: 1. httpclient-4.5.2.jar:这是Apache ...

Global site tag (gtag.js) - Google Analytics