我有两个Java项目,比方说A和B.在项目A的类中的方法中,我需要列出B类中包中的所有文件。
如果这不起作用:使用ClassLoader加载类也足够了,这就是我到目前为止的方法:
Class<?> c = Thread.currentThread().getContextClassLoader()
.loadClass(<<location of .java-file in another project>>);
我不知道如何在其他项目中引用该文件的位置。 有没有办法实现这个目标?