假设要找的类是:org.apache.commons.codec.binary.Base64
Java:
System.out.println(Base64.class.getProtectionDomain().getCodeSource().getLocation());
Scala:
println(classOf[Base64].getProtectionDomain.getCodeSource.getLocation)
这段代码就会输出Base64这个类所引入jar在本地机器的物理位置了
(责任编辑:)