String path = PathKit.class.getResource("/").toURI().getPath();
//path=/D:/AndroidWorkspace/JFinal1.6/bin/
return new File(path).getParentFile().getParentFile().getCanonicalPath();
//D:\AndroidWorkspace
* new File("..\path\abc.txt") 中的三个方法获取路径的方法
* 1: getPath() 获取相对路径,例如 ..\path\abc.txt
* 2: getAbslutlyPath() 获取绝对路径,但可能包含 ".." 或 "." 字符,例如 D:\otherPath\..\path\abc.txt
* 3: getCanonicalPath() 获取绝对路径,但不包含 ".." 或 "." 字符,例如 D:\path\abc.txt