i have class files in class folder. but i have no java files.
but i want to modify the java files which are related to
class files . how ?
Answer Posted / geetha
Javassist (Java programming assistant) is a load-time
reflective system for Java. It is a class library for
editing bytecodes in Java; it enables Java programs to
define a new class at runtime and to modify a class file
before the JVM loads it. Unlike other similar systems,
Javassist provides source-level abstraction; programmers
can modify a class file without detailed knowledge of the
Java bytecode. They do not have to even write an inserted
bytecode sequence; Javassist instead can compile a fragment
of source text on line (for example, just a single
statement). This ease of use is a unique feature of
Javassit against other tools.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
How we can get ip address of client in servlet?
When a servlet accepts a call from a client, it receives two objects. What are they?
How can the referrer and the target urls be used in servlet?
What is called servlet mapping?
Why session tracking is needed?
What are the advantages of cookies?
Explain how to improve Servlet Performance?
How do you create a cookie using servlet?
Describe some assignments that are executed by servlet container?
What is meant by servlet? What are the parameters of the service method?
What do you mean by the servlet chaining?
Explain the difference between generic servlet and http servlet?
Explain the difference between servlet and cgi?
Explain url encoding in servlet?
Write a hello world program using servlets.