我正在尝试使用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));
}
我认为它应该在某处,
但无论我输入什么,它都会给我一个错误,即不是这样的目录。
有什么建议吗?
谢谢