JTextArea XML data java

46 Views Asked by At

i have some simple data xml to need insert them into database, if possible we can insert the data xml to database. i use common database like xml. i do searching doing many way, like i planning to convert xml data into string xml first but after that i was confuse how insert string xml to database.

<?xml version="1.0"?>
<books>
  <book id="1">
    <title>Java Complete Reference</title>
    <genre>Computer</genre>
    <price>700</price>
    <publish_date>2000-10-01</publish_date>
  </book>
  <book id="2">
    <title>Java Cookbook</title>
    <genre>Computer</genre>
    <price>950</price>
    <publish_date>2000-12-16</publish_date>
  </book>
</books>

the plan i need data xml when we input in jtextarea is can insert into database. how i need to do.

0

There are 0 best solutions below