[
Lists Home |
Date Index |
Thread Index
]
Sahadab,
I recommend you start with JAXB [1]. JAXB allows one to marshal to an
XML document using a method that takes an OutputStream object as the
parameter. For instance, in the following example FileOutputStream is
used to write the XML content into a file with the name itemList2.xml:
File outFile = new File("itemList2.xml");
try{
FileOutputStream fout = new FileOutputStream(outFile);
il. marshal(fout);
}finally {
fout.close();
}
Kind Regards,
Joe Chiusano
Booz | Allen | Hamilton
[1] http://developer.java.sun.com/developer/technicalArticles/xml/jaxb/
shadab wrote:
>
> Hi,
>
> Given an xsd,Could it be possible through some java api to generate an xml
> with mock up data as say xml spy does?
>
> Regards,
>
> Shadab
>
> -----------------------------------------------------------------
> The xml-dev list is sponsored by XML.org <http://www.xml.org>, an
> initiative of OASIS <http://www.oasis-open.org>
>
> The list archives are at http://lists.xml.org/archives/xml-dev/
>
> To subscribe or unsubscribe from this list use the subscription
> manager: <http://lists.xml.org/ob/adm.pl>
begin:vcard
n:Chiusano;Joseph
tel;work:(703) 902-6923
x-mozilla-html:FALSE
url:www.bah.com
org:Booz | Allen | Hamilton;IT Digital Strategies Team
adr:;;8283 Greensboro Drive;McLean;VA;22012;
version:2.1
email;internet:chiusano_joseph@bah.com
title:Senior Consultant
fn:Joseph M. Chiusano
end:vcard
|