如何使用 wsjar 文件列出目录的内容?
下面的代码不适用于 WebSphere,但适用于 JBoss:
Enumeration<URL> en = getClass( ).getClassLoader( ).getResources( "com/myjars" );
while( en.hasMoreElements( ) ) {
URL url = en.nextElement( );
if( url.toString( ).startsWith( "jar:file:" ) || url.toString( ).startsWith( "wsjar:file:" ) ) {
JarFile jarFile = ( (JarURLConnection)url.openConnection( ) ).getJarFile( );
Enumeration<JarEntry> eje = jarFile.entries( );
while( eje.hasMoreElements( ) ) {
JarEntry jarEntry = eje.nextElement( );
System.out.println( jarEntry.getName( ) );
}
}
}
在 WebSphere 上,我得到:
java.lang.ClassCastException:com.ibm.ws.classloader.Handler$ClassLoaderURLConnection 与 java.net.JarURLConnection 不兼容