You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 14, 2019. It is now read-only.
在rt.jar(或classes.jar)中,包含其它的一个JDK系统中的类有很多不是以java, sun 或 com.sun开始的,也有很多org.w3c开始的,和其它的类;我之前在做单元测试框架的时候也使用过自定义的ClassLoader,最后的解决方法是先遍历了一遍JDK自己的jar包加载到内存,通过hashset判断才解决这个问题,不过这个方法比较耗内存。
但下面判断方法有点欠妥:
if (name.startsWith("java") || name.startsWith("sun") || name.startsWith("com.sun"))
在rt.jar(或classes.jar)中,包含其它的一个JDK系统中的类有很多不是以java, sun 或 com.sun开始的,也有很多org.w3c开始的,和其它的类;我之前在做单元测试框架的时候也使用过自定义的ClassLoader,最后的解决方法是先遍历了一遍JDK自己的jar包加载到内存,通过hashset判断才解决这个问题,不过这个方法比较耗内存。
但下面判断方法有点欠妥:
https://github.com/zhongl/HouseMD/blob/master/src/main/scala/com/github/zhongl/housemd/Duck.java
The text was updated successfully, but these errors were encountered: