I want to insert the Xml file data into MySQL table ,, by choosing which column to insert into ,, using Java How will this be done ?
Asked
Active
Viewed 2,212 times
1 Answers
0
It really depends on the format of your XML file. If your XML file is a direct export from the MySQL file, please refer to this question.
If your XML is in some other format, then I would probably be using JAXB to parse XML into POJO, then write some logic to map the POJO into the database table.