怎么得到java类当前路径

82550698 2007-12-18

怎么得到java类的当前路径而不是编印后的对应的.class文件路径

我写了一个类它的路径是

E:\workspace\WorkFlow\WorkFlow\src\com\njusoft\syschroFlow\test(这个是我要想得到的路径)

类如下

publicclassFilePath{

publicvoidPrint(){

Stringa=this.getClass().getClassLoader().getResource(".").getPath();

Stringb=this.getClass().getResource("").getPath();

Stringc=this.getClass().getResource("").getPath();

Stringd=this.getClass().getResource("/").getPath();

Stringe=System.getProperty("user.dir");

System.out.println(a);

System.out.println(b);

System.out.println(c);

System.out.println(d);

System.out.println(e);

System.out.println("*********************");

}

publicstaticvoidmain(String[]args){

FilePathf=newFilePath();

f.Print();

}

}

这样运行结果如下:

/E:/workspace/WorkFlow/WorkFlow/WebRoot/WEB-INF/classes/

/E:/workspace/WorkFlow/WorkFlow/WebRoot/WEB-INF/classes/com/njusoft/syschroFlow/test/

/E:/workspace/WorkFlow/WorkFlow/WebRoot/WEB-INF/classes/com/njusoft/syschroFlow/test/%20

/E:/workspace/WorkFlow/WorkFlow/WebRoot/WEB-INF/classes/

E:\workspace\WorkFlow\WorkFlow

*********************

我有如下几点疑惑希望各位能指点一下:

1为什么路径前还有一个/(E盘前),还有那个斜杠怎么是反的呢?

2为什么都是FilePath编译的对应的.class路径呢?

3getResource("."),getResource(""),getResource(""),getResource("/")里的参数是什么意思?

注意1Stringa那行我改为Stringa=this.getClass().getClassLoader().getResource("/").getPath();就报错

错误:Exceptioninthread"main"java.lang.NullPointerException

atcom.njusoft.syschroFlow.test.FilePath.Print(FilePath.java:5)

atcom.njusoft.syschroFlow.test.FilePath.main(FilePath.java:21)

2还有就是getResource(""),比getResource("")多一个%20

我第一次写博客发表文章请各位大侠帮一下忙,非常感谢。

第一次在这里写文章,才两个星期不到就扣了三次分,封了两次了唉!早晨来看看见帖子有人回了就过去回复一下发现自己又被封了。写好的话不能贴到给我回复的人博客。

先写在我自己这里好了。

回复抛出异常的爱

看到你的回帖我很(java相对路径)高兴,因为看见的博客在javaeye上有排名。心想牛人啊。牛人平易近人。可是我不懂怎么把eclipse编译路径指向src能告诉具体告诉我一下吗?呵呵太菜了。

相关推荐

87347969 / 0评论 2010-09-20
mnm0 / 0评论 2009-10-08