I have some java code (in jbuilder 7) that has data in a vector. I
want to get all this data out to an xml file. It is not in xml format
at all. This is part of the vector:
[FH|RCP-SDM|1.0, T|ABC|123456.123N|1234567.123W .....
I want to be able to get this data in this format in an xml file
without brute forcing it (and I guess I will do that if I have to,
but I would rather not):
<table>
<entry>
<Header>FH</Header>
<Title>RCP-SDM</Title>
<Version>1.0</Version>
</entry>
<Header>T</Header>
<Name>ABC</Name>
<Latitude>123456.123N</Latitude>
<Longitude>1234567.123W</Longitude>
</entry>
</table>
Can this be done using xmlpull or not? Any help you can give me would
be great. Thanks.
Allyson