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
What if you need to span your transaction across multiple servlet invocations?
Write a simple servlet program to print the contents of html.
What are important features of Servlet 3?
How to read request headers from servlets?
What is the difference between the servlets and cgi programs?
Write a servlet to upload file on server.
What is the servlet?
What is context in servlet?
Explain the architechure of a servlet?
Explain servlet events?
Given the request path below, which are context path, servlet path and path info?
Explain the difference between get and post method in servlet?
What is the difference between CGI and Servlet?
When servlet is loaded?
Explain the steps involved in placing a servlet within a package?