java中如何找到class文件的包

发布于 2024-12-04 16:43:13 字数 128 浏览 1 评论 0原文

我正在编写一个使用 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏九 2024-12-11 16:43:13

阅读 类文件格式文档 - 或使用一个知道如何解析类文件的库,例如 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文