URLのgetFile()メソッドの文字化けし問題
パスに中国語、スペースなどがある場合
URLのgetFile()メソッドは文字化けしを返します
解決策
URLDecoderでdecodeデコード
例をあげるとわかる
しゅつりょく
beforeDecode :-->/E:/.........../bin/pkg/aa%20a/%e4%bd%a0%e5%a5%bd.txt afterDecode :-->/E:/.........../bin/pkg/aa a/こんにちは.txt true
参考記事
http://liuu.iteye.com/blog/300618
URLのgetFile()メソッドは文字化けしを返します
解決策
URLDecoderでdecodeデコード
例をあげるとわかる
package pkg;
import java.io.File;
import java.io.UnsupportedEncodingException;
import java.net.URL;
import java.net.URLDecoder;
public class HelloWorld {
/**
* @param args
*/
public static void main(String[] args) {
try {
URL url = HelloWorld.class.getResource("aa a/ .txt");
// before decode
String beforeDecode = url.getFile();
// after decode
String afterDecode = URLDecoder.decode(beforeDecode, "UTF-8");
System.out.println("beforeDecode :--> " + beforeDecode);
System.out.println("afterDecode :--> " + afterDecode);
System.out.println(new File(afterDecode).exists());
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
}
}
しゅつりょく
beforeDecode :-->/E:/.........../bin/pkg/aa%20a/%e4%bd%a0%e5%a5%bd.txt afterDecode :-->/E:/.........../bin/pkg/aa a/こんにちは.txt true
参考記事
难経2:URL.getFile()は、トラを罠に落としたのか?
http://liuu.iteye.com/blog/300618