1

MusicStore在 Eclipse 中构建了一个动态 Web 项目,我想访问位于WebContent/_res/Songs.xml. 我用来在常规 Java 类中访问它的方法[not a servlet]是:

URL url = this.getClass().getClassLoader().getResource("/");
String filePath = url.getFile();
String webAppLoc=new File(filePath).getParentFile().getParent();
String resLoc=webAppLoc+"/_res/Songs.xml";

在我看来,这非常麻烦。有没有更好、更有效的方法?谢谢!

4

1 回答 1

0

在这里你可以试试这个来访问文件

public class Test {
    public static void main(String[] args){
        //This gives me path for the  current working directory.
        String fileName = System.getProperty("user.dir");

        //This gives me path for the file that is residing in folder called "xml_tutorial".
        File file = new File(fileName + "../../xml_tutorial/sample.xlsx" );
        System.out.println(file.getCanonicalPath());

 }
}
于 2013-08-04T05:11:07.670 回答