[jdom-interest] Jdom - XMLOutputter problem
Tatu Saloranta
cowtowncoder at yahoo.com
Tue Sep 30 12:25:47 PDT 2008
Sounds like you have another instance of jdom jar (with earlier version, 1.0 or pre-1.0) in your classpath somewhere. If so, you need to get rid of that jar or jars.
-+ Tatu +-
--- On Tue, 9/30/08, perez <msmr at netcabo.pt> wrote:
> From: perez <msmr at netcabo.pt>
> Subject: [jdom-interest] Jdom - XMLOutputter problem
> To: jdom-interest at jdom.org
> Date: Tuesday, September 30, 2008, 10:46 AM
> Hi,
>
> I want to output xml with JDOM using XMLOutputter class. I
> would like to use
> some of his methods to improve the results in the file. I
> have downloaded
> the last jdom api (1.1) and in my program, the code
> doesn't recognize
> several methods of that class. In the example above the
> program doesn't
> recognize xmlOutputter.setTextTrim( true );
> xmlOutputter.setIndent( 2 );
> xmlOutputter.setNewlines( true );
>
> Can you explain me why is this happen? How can I fix this
> problem
>
> Thanx
> MP
>
>
>
> import org.jdom.Document;
> import org.jdom.input.SAXBuilder;
> import org.jdom.output.XMLOutputter;
>
> public class Teste {
> public static void main( String[] args ) {
> try {
> // use SAXBuilder to create DOM from numerous types
> of input
> SAXBuilder builder = new SAXBuilder();
> builder.setExpandEntities( true );
> Document doc = builder.build(
> "drainpipe.xml" );
>
> // create and configure the XMLOutputter
> XMLOutputter xmlOutputter = new XMLOutputter();
> xmlOutputter.setTextTrim( true );
> xmlOutputter.setIndent( 2 );
> xmlOutputter.setNewlines( true );
>
> // output the text
> xmlOutputter.output( doc, System.out );
> }
> catch( Exception ioe ) {
> ioe.printStackTrace();
> }
> }
> }
>
> --
> View this message in context:
> http://www.nabble.com/Jdom---XMLOutputter-problem-tp19746001p19746001.html
> Sent from the JDOM - General mailing list archive at
> Nabble.com.
>
> _______________________________________________
> To control your jdom-interest membership:
> http://www.jdom.org/mailman/options/jdom-interest/youraddr@yourhost.com
More information about the jdom-interest
mailing list