当我解析保存在C:\
驱动器中的文件时,我的应用程序将运行。当我将文件保存在eclipse folder
中并修改代码时,我得到一个“ file not found error
”。
有任何建议吗?
我尝试修改“ String ebookName = "SomeBook.txt
”;“
if (selected.equals("1"))
{
ParseQuery pq = new ParseQuery();
String ebookName = "C:\\\\Assignments\\\\Java\\\\text-files\\\\SomeBook.txt";
try
{
pq.parse(ebookName);
System.out.println("parsed Ebook");
}
catch (Exception ex)
{
System.out.println("Exception found while reading the E-book: " + ex.getMessage());
}
}
保存在eclipse文件夹中的文件应被解析。