I*****y 发帖数: 6402 | 1 目前想把一个.jar文件内嵌到一个HTML页面,可是我不知道怎么找这个JAR文件里有什么
CLASS,所以想请教一下如何找出里面都有啥class(es)??
thanks |
B*********h 发帖数: 800 | 2 winzip
什么
【在 I*****y 的大作中提到】 : 目前想把一个.jar文件内嵌到一个HTML页面,可是我不知道怎么找这个JAR文件里有什么 : CLASS,所以想请教一下如何找出里面都有啥class(es)?? : thanks
|
I*****y 发帖数: 6402 | 3 能否说的详细一点? WINRAR行嘛?
【在 B*********h 的大作中提到】 : winzip : : 什么
|
B*********h 发帖数: 800 | 4 ft...当然可以。
【在 I*****y 的大作中提到】 : 能否说的详细一点? WINRAR行嘛?
|
I*****y 发帖数: 6402 | 5 怎么查找CLASS呢?
见笑了,谢谢大侠。
【在 B*********h 的大作中提到】 : ft...当然可以。
|
B*********h 发帖数: 800 | 6 打开了你就看到了,一般的jar都能看到。
【在 I*****y 的大作中提到】 : 怎么查找CLASS呢? : 见笑了,谢谢大侠。
|
o***g 发帖数: 2784 | 7 jar怎么嵌到html里面?
什么
【在 I*****y 的大作中提到】 : 目前想把一个.jar文件内嵌到一个HTML页面,可是我不知道怎么找这个JAR文件里有什么 : CLASS,所以想请教一下如何找出里面都有啥class(es)?? : thanks
|
q*****g 发帖数: 72 | 8 他的意思是链接吧
【在 o***g 的大作中提到】 : jar怎么嵌到html里面? : : 什么
|
o***g 发帖数: 2784 | 9 就是做个网页看一个jar里面都有什么?
自己有一个jar要看,还是要写程序看N多个阿?
【在 q*****g 的大作中提到】 : 他的意思是链接吧
|
b*********y 发帖数: 7 | 10 programmingly, I suggest you take a look at the java utility package, like
these two:
import java.util.jar.JarEntry;
import java.util.jar.JarFile;
or you can check out the api from ANT:
import org.apache.tools.ant.taskdefs.Jar;
if you want to present a list of classes on html page, you have to think of
implementing the functionality in a servlet.
google and check out their usage. Good luck. |
k***r 发帖数: 4260 | 11 i used a jar explorer tool before. It's a GUI tool
that shows all classes in a file explorer fashion
什么
【在 I*****y 的大作中提到】 : 目前想把一个.jar文件内嵌到一个HTML页面,可是我不知道怎么找这个JAR文件里有什么 : CLASS,所以想请教一下如何找出里面都有啥class(es)?? : thanks
|
m******t 发帖数: 2416 | 12 Or Runtime.exec("jar -tvf " + filepath) then
redirect the output to http output. ;-) |