0
votes
0answers
22 views

cusum tomcat webappclassloader to decrypt classes

I want to use a custom tomcat classloader to load and decrypt some encrypted classes in a "Java web application". To do so, I extended the WebappClassLoader class in tomcat and override the ...
0
votes
1answer
105 views

How get method body offset from Java .class file

How find on a Java .class file where start the method body Ex. package com.test; class Hello { public static boolean isTrue() { return true; } public static void main(String args[]) { ...
4
votes
3answers
94 views

Can the bytecode of a class change if a parent class/interface changes?

I'm trying to determine if I need to recompile some jars in our build chain, if I have for example the following structure, jar 1 compiles when its' source changes and jar 2 compiles when its' source ...
2
votes
1answer
165 views

how to find all methods called in a method?

how to take the methods of other classes invoked in a specific method? EXAMPLE method getItem1() public String getItem1() throws UnsupportedEncodingException{ String a = "2"; ...
8
votes
4answers
478 views

Can Java Classloader's rewrite the bytecode of (only their copy of) System classes?

So I have a classloader (MyClassLoader) that maintains a set of "special" classes in memory. These special classes are dynamically compiled and stored in a byte array inside MyClassLoader. When the ...
6
votes
2answers
468 views

How can a JVM decide if a class “belongs” (e.g. inner or nested classes) to another class?

I want to understand class files and inner/nested classes a bit better and I'm wondering about the following things: Is the InnerClasses attribute used to refer tothe inner/nested classes in the ...
7
votes
1answer
427 views

How to check if a class file version 50.0 (Java 6) has been preverified?

I "upgraded" some jar files from class file version 49.0 to 50.0 with ProGuard. Because preverification is optional with version 50.0, I wonder if there is a way to check if the class file has really ...
6
votes
3answers
2k views

check content in .class files

Suppose one learned that certain developer hardcoded a bunch of usernames and passwords into application, which made it into Production. Oh-oh ..! You know both username and password - is there a way ...
0
votes
2answers
393 views

Java class/bytecode weaving/editing on J2ME?

I'm just wondering if there are any Java class editors that work on a J2ME environment. I've looked at aspectwerkz, which works with Java 1.4, but there are some dependencies that doesn't work on ...
3
votes
4answers
25k views

Java Class File Editor

What is the most effective way I can decompile & Edit a class file? I really just want to edit one line of code in the file, however JBE (java ByteCode Editor) isn't letting me change a floating ...
9
votes
2answers
1k views

Why is Java 6 compiled class size larger than Java 5?

We are noticing that when we compile our classes on Java 6, they are consistently larger than Java 5. I understand that there has not been a change to the byte code to date, so I assume the Java 6 ...
0
votes
3answers
372 views

What is the variance of java .class files across different compilers, versions, dependencies?

Hi I was wondering how much Java class files change across different compilers. So how much do the actual bytes change if a .java files is compiled by say a Sun JDK 1.4, 1.5 1.6 or even IBM JDK. I ...
7
votes
5answers
425 views

How to emit newer class file versions with Scala (50.0/51.0)?

I want to test the new type-checking bytecode verifier with classes created by scalac. scalac currently outputs version 49.0 class files, but the new type-checking verifier is only mandatory since ...
8
votes
4answers
9k views

How to view Java's byte code?

Sometimes, in Eclipse , i press a combination of keys which take me to the editor page that shows contents of my .class file (bytecode). I never seem to be able to remember what that key combination ...
1
vote
1answer
130 views

transmit a java.lang.reflect.Proxy over a network

Is there a convenient way to transmit an object including its code (the class) over a network (not just the instance data)? Don't ask me why I want to do this. It's in an assignment. I asked several ...
3
votes
1answer
514 views

Does the Dalvik file format (*.dx) support more instructions than a Java .class file?

Is there anything the Dalvik VM supports (in terms of bytecode) which is not used currently because the .class files don't have it? As an example, if people would write their own Source-to-DX ...