I'm getting this error when I try to serialize a Method object.
java.io.NotSerializableException: java.lang.reflect.Method
Any Idea?
|
I'm getting this error when I try to serialize a Method object.
Any Idea? |
|||||
|
|
There is no way to serialize a method object in a portable way since it doesn't contain all the necessary information to restore it (for example, the bytecode). Instead, you should serialize the name of the class, the method name and the parameter types. Then you can recreate the |
|||||
|
|
|
You can do it manually. Just serialize your class name, method name and parameter class names as strings and then recreate your Method object using a reflection mechanism during deserialization.
If you implement Externalizable interface then You can use your class as regular serializable class. |
|||
|
|
|
|
|||||
|
|
Assuming that the You could implement an MethodInfo class for this purpose.
|
|||
|
|