-- 1. 返回当前用户工作目录
-- 语法:System.getProperty("user.dir");
-- 说明:返回当前用户工作目录,即在哪个地方启动的java程序,返回就是当前目录。
/**
public static void main(String[] args) throws MalformedURLException, URISyntaxException {
// 返回当前用户的工作目录,replaceAll()是正则表达式的用法.
System.out.println(System.getProperty("user.dir")+"/"+(MainTest.class.getPackage().getName()).replaceAll("//.", "/")+"/");
System.out.println(System.getProperty("user.dir") + "\\" + MainTest.class.getPackage().getName());
}
*/