如何在mac机器上的Eclipse Run Configuration中传递文件路径?

时间:2018-06-14 03:17:50

标签: java eclipse

我正在尝试使用Eclipse参数(运行配置菜单中的参数)将文件路径传递给我的java应用程序,但我正在使用mac机器。

 public static void main(String[] args) 
 {
        // Read the filename from the command line argument
        String filename = args[0];
        BufferedReader inputStream = null;

        String fileLine;
        try 
        {
            inputStream = new BufferedReader(new FileReader(filename));
 }

我认为它应该在某处,

enter image description here

enter image description here

但无论我输入什么,它都会给我一个错误,即不是这样的目录。

有什么建议吗?

谢谢

0 个答案:

没有答案