当前位置: 技术问答>java相关
如何得到到当前路径
来源: 互联网 发布时间:2017-05-02
本文导语: JAVA 如何得到到当前路径 | File f = new File("."); String mypath = f.getAbsolutePath(); String mypath1 = f.getPath(); | new File("").getAbsolutePath() | getCodeBase() | ...
JAVA 如何得到到当前路径
|
File f = new File(".");
String mypath = f.getAbsolutePath();
String mypath1 = f.getPath();
String mypath = f.getAbsolutePath();
String mypath1 = f.getPath();
|
new File("").getAbsolutePath()
|
getCodeBase()
|
getCodeBase()