Hi there,

when I export data to xml file I've got something like:
- <table>
- <row>
  <column>2353</column> 
  <column>04166132618</column> 
  <column>1072</column> 
  <column>Test</column> 
  <column>2008-03-01 10:48:42.0</column> 
  </row>
- <row>
  <column>2354</column> 
  <column>04166132618</column> 
  <column>1072</column> 
  <column>Test</column> 
  <column>2008-03-01 10:50:43.0</column> 
  </row>
- <row>

How I can change XML tags? I will like my exported file to be like:
- <table>
- <row>
  <id>2353</id> 
  <dni>04166132618</dni> 
  <ani>1072</ani> 
  <body>Test</body> 
  <date>2008-03-01 10:48:42.0</column> 
  </row>
- <row>
  <id>2354</id> 
  <dni>04143943266</dni> 
  <ani>1072</ani> 
  <body>Test</body> 
  <date>2008-03-01 10:49:05.0</column> 
  </row>

I'm using struts 1.3, MyEclipse and Tomcat.

Thanks in advance,

Best regards,

Francisco


-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
displaytag-user mailing list
displaytag-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/displaytag-user

Reply via email to