java删除Linux文件路径问题,Java在Linux下获取当前程序路径&解决中文编码问题

在Linux下,可以通过获取当前的类所在路径的方法获取当前路径,但如果路径中存在中文或者空格,则中文部分会显示成%xx,这是要对路径进行编码转换,具体代码如下:

/*通过获取当前Class所在位置来获取当前路径,如果该用户的文件夹不存在,则删除*/

public String FindCurrentParentPath(){

String Result="";

CODER Coder = new CODER();

String Path = this.getClass().getResource("Main.class").getPath().replaceAll("%20", " ");

String[] aa = Path.split("/");

int k = 3;

// System.out.println("aa="+aa[(aa.length-3)]);

if(aa[(aa.length-4)].equals("build")){

k = 4;

}

for(int i = 1;i

if(Coder.isUtf8Url(aa[i])){

String path1 = Coder.Utf8URLdecode(aa[i]);

// System.out.println(Coder.Utf8URLdecode(aa[i]));

Result = Result+"/"+path1;

}else{

String path2 = URLDecoder.decode(aa[i]);

// System.out.println(URLDecoder.decode(aa[i]));

Result = Result+"/"+path2;

}

}

if(System.getProperty("os.name").contains("Windows")){

Result = Result.replaceFirst("/", "");

}

return Result;

}

CODER类定义如下:

/*编码转换(把%..恢复成中文)*/

class CODER {

/**

* 转换编码 ISO-8859-1到GB2312

* @param text

* @return

*/

public String ISO2GB(String text) {

String result = "";

try {

result = new String(text.getBytes("ISO-8859-1"), "GB2312");

}

catch (UnsupportedEncodingException ex) {

result = ex.toString();

}

return result;

}

/**

* 转换编码 GB2312到ISO-8859-1

* @param text

* @return

*/

public String GB2ISO(String text) {

String result = "";

try {

result = new String(text.getBytes("GB2312"), "ISO-8859-1");

}

catch (UnsupportedEncodingException ex) {

ex.printStackTrace();

}

return

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值