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).