java中如何找到class文件的包
我正在编写一个使用 .class 文件的 java 程序。我希望能够读取文件系统上的 .class 文件(使用 InputStream)并确定它所在的包。该 .class 文件可能不在一个好的包目录结构中,它可能位于某个随机位置。我该怎么做?
I'm writing a java program that works with .class files. I want to be able to read a .class file on the filesystem (with InputStream) and determine the package that it is in. That .class file might not be in a nice package directory structure, it could be lying around in some random place. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
阅读 类文件格式文档 - 或使用一个知道如何解析类文件的库,例如 BCEL 及其
ClassParser
类。Read the class file format documentation - or use a library which knows how to parse class files, such as BCEL and its
ClassParser
class.