如何在不列出整个路径的情况下调用文件?

时间:2017-06-25 06:50:08

标签: java

我正在构建一个身份验证系统。我有一组文件在程序的src文件中。我需要调用这些文件来检查并显示。我的程序目前工作正常,我称之为:

    File credFile = new File("C:\\Users\\gsiek\\Documents\\Final Project\\Authentication System\\src\\authentication\\system\\credentials.txt");
    File zkFile = new File("C:\\Users\\gsiek\\Documents\\Final Project\\Authentication System\\src\\authentication\\system\\zookeeper.txt");
    File vetFile = new File("C:\\Users\\gsiek\\Documents\\Final Project\\Authentication System\\src\\authentication\\system\\veterinarian.txt");
    File adminFile = new File("C:\\Users\\gsiek\\Documents\\Final Project\\Authentication System\\src\\authentication\\system\\admin.txt");

我遇到的问题是,当我提交此项目进行评分时,我害怕该程序无法正常工作,因为我拥有计算机的完整路径。如何更改此设置以便我可以调用该文件而不列出特定于我的计算机的整个路径?

0 个答案:

没有答案