文件找不到日食问题

时间:2019-01-05 15:09:57

标签: java eclipse

当我解析保存在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文件夹中的文件应被解析。

0 个答案:

没有答案