Tagged Questions

7
votes
2answers
286 views

What bytecode library when controlling line numbers?

I need to generate new classes (via generation of java byte code) from existing classes. I will analyse the body (expressions) of the methods of a class. The expressions will determine what code I ...
4
votes
3answers
1k views

Ant loadproperties failed (bcel error?)

I'm working on a simple build script that should get some constants from a java class file and use them as the version numbers in my file names. I use Eclipse and its own Ant, but put bcel-5.2.jar in ...
3
votes
1answer
140 views

How is the Java Service Provide API supposed to work?

It seems like everybody has had an unpleasant brush with the Java Service Provider, that thing you can do with a file named like META-INF/services/com.example.Interface, but that nobody uses except ...
2
votes
3answers
41 views

How can one tell if a local variable is 'final' from Java bytecode? (Related to BCEL)

Where is information such as if a local variable is "final" stored in Java bytecode? I know that for fields (global variables) and methods these are found in the access flag bits, but cannot seem to ...
2
votes
1answer
97 views

Can we push a Custom Type Object on Stack Operand in BCEL?

In BCEL we can push primitive types on Operand Stack. BUT now I want to know if it is possible to push a Custom Type Object on Stack in BCEL? I am giving some code so that it can explain the Problem ...
2
votes
1answer
93 views

How to push integer on Stack in BCEL

I am facing a problem in context of pushing a integer on stack in BCEL. I have a method _square of someClass i.e. "mathClass" ilist = new InstructionList(); ...
2
votes
4answers
945 views

Create simple POJO classes (bytecode) at runtime (dynamically)

I've the following scenario.. I am writing some tool that run user-entered query against the database and return the result.. The simplest way is to return the result as: List<String[]> but I ...
2
votes
1answer
93 views

Renaming Things

How do I rename things using BCEL? So far what I do is go through each method in a class and create a new NameAndType constant in the constant pool, then I replace the old NameAndType constant with ...
2
votes
2answers
2k views

Change classloader

I'm trying to switch the class loader at runtime: public class Test { public static void main(String[] args) throws Exception { final InjectingClassLoader classLoader = new ...
2
votes
1answer
550 views

Create a BCEL JavaClass object from arbitrary .class file

I'm playing around with BCEL. I'm not using it to generate bytecode, but instead I'm trying to inspect the structure of existing compiled classes. I need to be able to point to an arbitrary .class ...
2
votes
4answers
557 views

Is BCEL == monkeypatching for java?

a colleague pointed me the other day to BCEL which , as best I can tell from his explanation and a quick read, a way to modify at run time the byte code. My first thought was that it sounded ...
1
vote
1answer
15 views

Can't see the changes made by BCEL

I'm trying to change main method of my Test class using BCEL. I simply want to add System.out.println("This is added by BCEL at runtime") to the beginning of the main(). Although I don't receive ...
1
vote
1answer
109 views

Dynamically editing/creating classes in Java Android

I am looking for a way to dynamically define classes and instantiate them in Android, at runtime. From my understanding, this is already done in Android, I just need some help figuring it out. I can ...
1
vote
1answer
36 views

How to get class Constructor parameteres using Apache BCEL?

I 'm able to get methods using BCEL but is it possible to get constructors of a class using the same library?
1
vote
1answer
55 views

JAVA BCEL NEWARRAY getType Basic Type

How do I in BCEL check for this.. Say the bytecode in java is newarray 10 (int) I got this already done for visitor instruction instanceof NEWARRAY public boolean visit(Instruction instr) { ...
1
vote
1answer
68 views

extract variable names using BCEL library

hi i am using bcel library to read byte code. I needed to extract the variables names. Any idea how to do it?
1
vote
2answers
196 views

Java: adding debug call to every method with BCEL

I'm working with BCEL trying to add System.out.println() invoke to every method's first line (except init and clinit methods), to see what methods are called and when This is my code atm (with some ...
1
vote
1answer
96 views

Getting weird errors on stack manipulation

As part of some simulations that I am running using a tool called JIST/SWANS I am getting some weird errors. This simulator has been written for Java 1.4 and I am attempting to port it to 1.5. What ...
1
vote
0answers
335 views

Bytecode: LOOKUPSWITCH and TABLESWITCH

I am currently instrumenting bytecode using BCEL. In the BCEL API, the two instructions types LOOKUPSWITCH and TABLESWITCH (package org.apache.bcel.generic) are implementing interface StackProducer. I ...
1
vote
1answer
144 views

Figure out method name from line number in Java?

Given a line number, the code file, as well as the compiled class file if necessary, what is the most elegant way to get the signature of the surrounding method (if the line number is even in a ...
1
vote
4answers
1k views

FindBugs not accepting bcel.jar in ANT script

I installed findbugs into my ant lib directory and added the following code into my main ANT script: <target name="findbugs" depends="init"> <findbugs home="C:\\findbugs\\" output="html ...
0
votes
1answer
17 views

missing classes in classfiles constant pool

i am using bytecode analysis to get all imported classes of a classfile (with BCEL). Now, when i read the constant pool, not all imported classes are mentioned as CONSTANT_Class (see spec) but only as ...
0
votes
1answer
43 views

String (from bytecodes) from Java BCEL differs from Javap and other tools

I use BCEL library to extract bytecode from a particular Method. To do that, I use getCode() function from BCEL Method class. When I do: String code = metod.getCode().toString(); ...
0
votes
2answers
34 views

Is there anything that will index java source, but also include information from the compiled bytecode?

I need to search a large code base, and I'd like to get results to searches like: 'Which classes call method X()' and 'Give me the concrete implementers of interface Y' The kind of handy stuff you ...
0
votes
1answer
30 views

Java delegating call BCEL/ASM

Hello dear members of SOF! What I am looking for? I've been searching and searching around web how can I implement/inject interface on class(that has been compiled of course) and add the required ...
0
votes
0answers
18 views

BCEL - debugging return statements

I want to modify existing *.class file. When method is finished and returns its value I want to display debug message "Got result: %return value%". How can I achieve this using BCEL?
0
votes
1answer
42 views

How to specify ClassParser constructor parameter?

I'm trying to use ClassParser to get method parameter names, ClassParser constructor takes class name as parameter for example: ClassParser parser = new ClassParser("Main.class"); I 'm trying to ...
0
votes
3answers
36 views

Could I add the comments to my java class with the BCEL?

1.Could I add the comments to my existing java class with the BCEL? 2.Could I add the comments to my newly manually generated java class with the BCEL?
0
votes
0answers
72 views

java trace of all runtime variable access

I need to log all run-time access to any variable or object My current direction is to markup the classfile with modified bytecode Performance is not currently an issue BCEL looks nice to add some ...
0
votes
1answer
165 views

Invoking Method using BCEL

is there any expert in this community who have worked with BCEL and can guide me about invocation of method using BCEL just like we use to do with java reflection. Note:to support your answer any ...
0
votes
1answer
180 views

BCEL,Objectweb asm & java refelction comparison

Can anyone give an elaborative comparison between BCEL, ObjectWeb Asm and java reflection regarding every aspects(their pros and cons) but specially for invoking a method of a .class file. thanks in ...
0
votes
0answers
149 views

How to invoke a method using BCEL java

Can we invoke a method using BCEL. Just like we use to invoke a method in reflection.If Yes then kindly give some piece of code. thanks in advance
0
votes
0answers
129 views

instrumentation using BCEL

I m working on a project the title is "to visualize the run time behavior of java collection API's(e.g. Hashtable, vector etc) within a large code base" my target is to show the total number of ...
0
votes
1answer
114 views

Dynamic Bytecode Execution

Alright so I'm trying to write a generic string deobfuscator (Similar to what .NET has with Simple Assembly Explorer) What I want to do is grab a method's instructions via BCEL and execute them with ...