在一个项目中,上传文件采用httpclient来post文件,在测试中
发现如果文件是中文名称,上传的文件是乱码
经过跟踪发现,原来在httpclient中进行了
编码,为ASCII,所以为乱码
org\apache\commons\httpclient\util包下EncodingUtil.Java
/**
*ConvertsthespecifiedstringtobytearrayofASCIIcharacters.
*
*@paramdatathestringtobeencoded
*@returnThestringasabytearray.
*
*@since3.0
*/
publicstaticbyte[]getAsciiBytes(finalStringdata){
if(data==null){
thrownewIllegalArgumentException("Parametermaynotbenull");
}
try{
returndata.getBytes("US-ASCII");
}catch(UnsupportedEncodingExceptione){
thrownewHttpClientError("HttpClientrequiresASCIIsupport");
}
}
解决方法:
1在接收端处理ascii数据
2重新编译httpclient包,即更改上面的方法,改为iso8859-1或utf-8
这样可以解决中文的问题
50校招生网 http://www.50xiao.com