我是java和Ubuntu的新手。我想知道如何在代码中编写特定文件的正确路径,因为我得到了像这样的异常
/home/me/javaException in thread "main" java.io.FileNotFoundException:
home/me/java/config.properites (No such file or directory)
这是我的代码:
public static void main(String[] args) {
Properties prop = new Properties();
String queryFile = null;
FileOutputStream fos = null;
try {
// load a properties file
FileInputStream finputstream = new FileInputStream("config.properties");
答案 0 :(得分:2)
System.out.println(this.getClass().getResource("").getPath());
System.out.println(this.getClass().getResource("/").getPath());
也许这很有用。它打印当前的类位置和类路径根
System.out.println(new File("").getAbsolutePath());
这将打印执行java命令的路径