I have a class which has not default constructor. And I need a way to get 'blank' instance of this class. 'blank' means that after instantiation all class fields should has default values like null, 0 etc.

I'm asking because I need to be able serialize/desirialize big tree of objects. And I have no access to sources of this objects classes and classes has neither default constructors nor implements serializable. It is likely not very good idea to try to serialize such structure but the alternative is to convert it to something more easily serializable.

link|improve this question

62% accept rate
feedback

7 Answers

up vote 8 down vote accepted

With standard reflection, no, but there is a library that can do it for you: objenesis.

It's specifically designed to instantiate classes without default constructors, and it's used by other serialization libraries like xstream.

Note: the constructor might not be called in these cases (but that's presumably what you want).

link|improve this answer
Wow! What an evil piece of code! – Stephen C Nov 9 '10 at 12:58
I agree - very evil. When a programmer creates no ctor they he/she expects that nobody calls it, and - surprise! :-) – iirekm Nov 9 '10 at 13:23
But from the other side, "normal" reflection also breaks the rules of class design (like accessing private fields), but at least most programmers realize, that such thing like reflection exists. Very few programmers know about objensis. – iirekm Nov 9 '10 at 13:25
feedback

Having Class instance provided as variable clazz:

ReflectionFactory rf = ReflectionFactory.getReflectionFactory();
Constructor objDef = parent.getDeclaredConstructor();
Constructor intConstr = rf.newConstructorForSerialization(clazz, objDef);
clazz.cast(intConstr.newInstance());

as described in http://www.javaspecialists.eu/archive/Issue175.html

link|improve this answer
Nice. We might have a winner here! (+1) – Sean Patrick Floyd Nov 9 '10 at 13:01
Keep in mind though that the ReflectionFactory class is a Sun class so this will only work on Sun/Oracle VMs, and even then it's subject to change. – Francis Upton Dec 22 '11 at 17:52
feedback

Your solution will be JVM specific.

If you need a portable solution use a 3rd party library.

For Sun's JVM v1.5 you can do this:

    final Class<?> myClass = MyClass.class;
    final ReflectionFactory reflection = ReflectionFactory.getReflectionFactory();
    final Constructor<Object> constructor = 
        reflection.newConstructorForSerialization(
            myClass, Object.class.getDeclaredConstructor(new Class[0]));
    final Object o = constructor.newInstance(new Object[0]);

    System.out.print(o.getClass());

The relevant classes in XStream are:

  • com.thoughtworks.xstream.converters.reflection.PureJavaReflectionProvider
  • com.thoughtworks.xstream.core.JVM;
link|improve this answer
feedback

If your class has no other constructor, then the compiler will create one for you. You might have a no-arg constructor and not realize it.

If you do not write a no-arg constructor, and you include even one constructor that takes an argument, then the compiler will not give you one. Reflection won't help, either: if you try to find a no-arg constructor and there isn't one, what do you expect to happen?

It doesn't sound like you can use Java object serialization using java.lang.Serializable, but that's not your only choice. You can also use XML, or JSON, or prototype buffers, or any other protocol that's convenient.

link|improve this answer
+1 for being (almost) the only one who knows what he (and the OP) is talking about – Sean Patrick Floyd Nov 9 '10 at 13:00
feedback

The only solution I can think of would be to use a bytecode manipulation library such as javassist to add a default constructor.

link|improve this answer
Why the downvote? The solution is somewhat crazy, but valid. – Sean Patrick Floyd Nov 9 '10 at 13:12
@seanizer Thanks – Maurice Perry Nov 9 '10 at 13:36
feedback

If I understand you correctly, do you want something of this effect?

Example:

public class Bean {
    private int id;
    private String value;

    //There are no constructors here at all...

    //Getters and setters here...
    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public int getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }
}


Bean b = Bean.class.newInstance();

Partial Description of java.lang.Class.newInstance() method.

Creates a new instance of the class represented by this Class object. The class is instantiated as if by a new expression with an empty argument list. The class is initialized if it has not already been initialized.

As you can see, the newInstance() "calls" a zero-arg constructor to create a new instance of the object.


Update (forget my previous section, since it doesn't fit your requirement). Please refer to your previous question, any object that isn't Serializable cannot be Serialized. This is clearly stated in Serializable javadoc.

Classes that do not implement this interface will not have any of their state serialized or deserialized. All subtypes of a serializable class are themselves serializable.

So, you can't serialize any object that does not implement Serializable.

Since you don't have access to the source of the object that has no no-arg constructor, then reflection won't really help you. The only way I can think of serializing non serializable object is to reflectively map the object's attributes into a Serializable structure such as XML, JSON, etc. and create a mapping for that format to the object. If the objects have parametrized parameters, you could retrieve those parameters, and instantiate the object via new statement to get object (If you get my drift).

link|improve this answer
1  
Only because you didn't write any constructors. You're using the default no-arg constructor that the compiler gives you. – duffymo Nov 9 '10 at 12:46
@duffymo, that's true, hence why newInstance() works. – The Elite Gentleman Nov 9 '10 at 12:47
1  
Yup, I realize that. The OP's point is that the classes s/he's given may or may not have other constructors defined. If they do, and the compiler doesn't supply that no-arg constructor, then this technique cannot work. – duffymo Nov 9 '10 at 12:49
1  
@duffymo, if it has no default constructor, then my newInstance() won't work....the OP can use Constructor.newInstance(Object... ) method instead. – The Elite Gentleman Nov 9 '10 at 13:00
@duffymo: Didn't the OP said (emphasis mine): "And I have no access to sources of this objects classes and classes has neither default constructors nor implements serializable." Doesn't that mean that his classes have no constructor? – Daniel Fath Nov 9 '10 at 13:00
show 1 more comment
feedback

Test it: see if yourObject.class.newInstace() work. If not then all I can think of is to create a prototype object by calling the usual constructor, set its fields to zero and then clone it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.