如何读取文本文件相对路径

2022-09-04 06:08:40

我已经在这里和那里阅读了源代码,但没有让下面的代码工作。基本上,我希望从文件夹“src”中读取一个名为“管理员”的文本文件。我需要一个相对的路径,因为这个项目可能会被转移到另一个人身上。请耐心等待我。

public void staffExists () throws IOException
    {               
        //http://stackoverflow.com/questions/2788080/reading-a-text-file-in-java
        BufferedReader reader = new BufferedReader(new FileReader(getClass().getResourceAsStream ("/DBTextFiles/Administrator.txt")));

        try
        {               
            String line = null;
            while ((line = reader.readLine()) != null)
            {
                if (!(line.startsWith("*")))
                {
                    System.out.println(line);
                }
            }

        }
        catch (IOException ex)
        {
            ex.printStackTrace();
        }               

        finally
        {
            reader.close();
        }           
    }

答案 1

这是一个有效的绝对路径(在我所知道的系统上):

    /path/to/directory/../../otherfolder/etc/

所以另一个答案是,获取当前目录的路径:

    String filePath = new File("").getAbsolutePath();

然后,将您的相对路径与以下路径连接起来:

    filePath.concat("path to the property file");

答案 2

现在我明白了,这里和那里的一些答案确实有助于我达到目标。对我的代码进行了简短的编辑,它起作用了。希望它也能帮助一些可怜的灵魂。

String filePath = new File("").getAbsolutePath();
System.out.println (filePath);

//http://stackoverflow.com/questions/2788080/reading-a-text-file-in-java    
//http://stackoverflow.com/questions/19874066/how-to-read-text-file-relative-path
BufferedReader reader = new BufferedReader(new FileReader(filePath + "/src/DBTextFiles/Administrator.txt"));

try
{                           
    String line = null;         
    while ((line = reader.readLine()) != null)
    {
        if (!(line.startsWith("*")))
        {
            System.out.println(line);
        }
    }               
}
catch (IOException ex)
{
    ex.printStackTrace();
}               

finally
{
    reader.close();
}                   

推荐