Possible Duplicate:
Modifying a file inside a jar
So I have a jar file with one .class file on it. I just need to change some words in the file. What program should I use?
I want this to work for my phone.
So I have a jar file with one .class file on it. I just need to change some words in the file. What program should I use? I want this to work for my phone. |
||||
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
A jar file is a zip archive. You can extract it using 7zip (a great simple tool to open archives). You can also change its extension to zip and use whatever to unzip the file. Now you have your class file. There is no easy way to edit class file, because class files are binaries (you won't find source code in there. maybe some strings, but not java code). To edit your class file you can use a tool like classeditor. You have all the strings your class is using hard-coded in the class file. So if the only thing you would like to change is some strings you can do it without using classeditor. |
|||||
|
|
Here's what I did:
That's it. I have tested it with my Nokia and it's working for me. |
|||||||||
|
|
|||||
|
.classfile? You do understand that such files are binary, right? – Kirk Woll Jan 29 '11 at 14:56.zipif you can't do it directly. But it won't help you much, as the code is not in them, Java is a compiled language - editing the .class files is far from easy. – Orbling Jan 29 '11 at 15:04