[color=red][size=large]下面是我的代码,如果url当中没有中文则可以下载,如果有则出错。InputStream in = con.getInputStream();这一句出错。
这个是编码问题,我上网找了很多资料,但是还是不会改,对编码的原理还不是很了解。哪位帮忙改改,谢谢![/size][/color]
[code="java"]import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
public class download {
public static void DownloadFile(URL theURL, String filePath) throws IOException {
URLConnection con = theURL.openConnection();
String urlPath = con.getURL().getFile();
String fileFullName = urlPath.substring(urlPath.lastIndexOf("/") + 1);
if (fileFullName != null) {
byte[] buffer = new byte[4 * 1024];
int read;
String path = filePath + "/" + fileFullName;
File fileFolder = new File(filePath);
if(!fileFolder.exists()){
fileFolder.mkdir();
}
InputStream in = con.getInputStream();
FileOutputStream os = new FileOutputStream(path);
while ((read = in.read(buffer)) > 0) {
os.write(buffer, 0, read);
}
os.close();
in.close();
long end = System.currentTimeMillis();
} else {
}
}
public static void main(String[] args) {
String urlS = "http://172.18.33.133:8080/zh/中文.jpg";
String filePathString = "d:/中文";
URL url;
try {
url = new URL(urlS);
try {
DownloadFile(url,filePathString);
} catch (IOException e) {
e.printStackTrace();
}
} catch (MalformedURLException e) {
e.printStackTrace();
}
}
}[/code]
[code="java"]
String urlS = "http://172.18.33.133:8080/zh/中文.jpg";
把文件名編碼成你服務器端一樣啊·主機不要編碼·
String host="http://172.18.33.133:8080/zh/";
String filename=java.net.Encoder.encode("中文.jpg","服務器斷編碼·");
String urlS = host+filename;
[/code]
根据它的RFC,URL中本不应包含中文。
如果包含中文,应当把中文字符变成字节(利用GB18030或者UTF-8等编码)。
客户端转换的方式必须和服务器相同,比如服务器认为URL中的中文按照UTF-8编码,你的客户端就不能按照GB18030编码。
如果服务器是你的,你应该知道它用哪种方法编码URL。如果是Tomcat,你需要修改server.xml。上网用“tomcat URIEncoding”关键字搜索,修改一个叫URIEncoding的东西。
客户端,你可以构造一个java.net.URI(构造的时候会用UTF-8编码),然后转换成URL。也可咦用Apache HTTP Client中提供的方法进行转义。