String path=Parameter.class.getResource("").getPath();//得到路径//String path=Parameter.class.getResource("").toString();//这个不行,无法处理里面的空格。//System.out.println(path);
对路径中的空格取消的话,那么就要对路径进行转码path=URLDecoder.decode(path,"utf-8");//关键啊 !