PetrV
PetrV

Reputation: 1368

Jasmin IDE plugin or editor

I have a .class file I need to edit and Jasmin would be a viable way to do it. I found the Jasclipse plugin, but that's apparently too old and I cannot install it into newer Eclipse IDE.

Do you know of good way to edit .class files with Jasmin code? Or know of a plugin for Netbeans or Eclipse or IntelliJ that does the same thing?

Thanks in advance for insight.

Upvotes: 2

Views: 1698

Answers (1)

lscoughlin
lscoughlin

Reputation: 2416

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.

Upvotes: 1

Related Questions