(hopefully better late than never)
yes: use a custom object <-> string converter. see http://jakarta.apache.org/commons/betwixt/guide/binding.html for more details.
- robert
On 8 Sep 2004, at 04:07, [EMAIL PROTECTED] wrote:
hi, I am a beginner of commons.betwixt.
I just wondering if Betwixt can do this and how : when convert a Bean To
Xml,
Could betwixt recognize an object in the bean I input, and then change the
output
of it to another object(exp : Date) in the XML?
FOR EXAMPLE : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
If there is a Calendar in myBean, could Betwixt just write it as a Date in
the output XML?
// ====================================
// If the Bean for convert is =>
// ====================================
public class MyBean {
private String id; private String name; private String[] emails; .......... private Calendar myCal;
..........
}
// ==================================== // The output XML I hoped is => // ==================================== <?xml version='1.0' encoding='UTF-8'?> <mybean> <String>id value</String> <String>name value</String> <String>email value</String> .......... <Date>Date value</Date> .......... </mybean>
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
appreciate for any re, thanks!
Dong
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
