Hello, 

I am a beginner in using BCEL. 

Is it possible to modify the variable values and variable name with BCEL? 

For example, 

class test { 
public void init(int a, String x) { 
int i; 
String o; 

i = a + 1; 
o = x + " ... "; 
} 
} 


In the above java, after I compiled it to test.class, how can I change the 

1. init(int a, String x) to init(int intVar, String strVar) 
2. int i ----> int tmpVar; 
3. String o ----> String oVar; 
4. i = a + 1 ----> i = 10; 



Best regards, 
Eric 


==========================
If you know what you are doing, 
it is not called RESEARCH!
==========================

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to