Jasmin IDE 插件或编辑器
我有一个需要编辑的 .class 文件,Jasmin 将是一种可行的方法去做它。我找到了 Jasclipse 插件,但它显然太旧了,我无法将其安装到较新的 Eclipse IDE 中。
您知道使用 Jasmin 代码编辑 .class
文件的好方法吗?或者知道 Netbeans 或 Eclipse 或 IntelliJ 的插件可以做同样的事情吗?
预先感谢您的见解。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://jasclipse.sf.net/update
编辑:
这是我最近知道的事情......希望其他人知道更多一点。我猜你想在“jvm assembly”中生成一个 .class 文件,而不是编辑一个,因为有一些更可行的方法来转换现有的类文件,最值得注意的是 ASM 这几乎是目前的行业标准。
如果您实际需要的是转换(编辑)现有的 .class 文件,ASM 提供了一个很好的 java DSL 来直接在 java 中进行转换,因此您的 IDE 就是您所需要的。
抱歉,最初的答案有点简短。我喜欢使用字节码,我很遗憾 jasclipse 插件死了。
http://jasclipse.sf.net/update
EDIT:
This is the most recent thing I know of... One hopes someone else knows a bit more. I'm guessing you want to generate a .class file in "jvm assembly", not edit one, as there are a few more viable ways to transform an existing class file, most notably ASM which is pretty much the industry standard at this point.
If what you actually need is to transform (edit) an existing .class file, ASM provides a nice java DSL to do the transformation directly in java so your IDE is all you need.
Sorry that the Initial answer was a bit brief. I like futzing with byte-code and I'm sad the jasclipse plugin died.