I have a piece of software for reviewing cigars, the user enters the stats (name, price, brand, country, length etc) and a review (maybe a paragraph or two). Theres a menu for searching for previously reviewed cigars which will pull the stats and review for that cigar. At the moment its easy to search for the cigars because the data is all stored in a mysql db on a local server (for example i have a button 'country' which will fill the menu with the countries of the cigars stored in the db(cuba, nicuragua etc...then clicking on the country will fill the menu with the names of the cigars from that country - clicking on the names obviously brings up the stats and review))
I want to convert it so that the data is stored in xml files that the software will create. Is this easy to do? Bearing in mind that the xml files will need to be updated everytime a new review is written? I started trying out XStream but im thinking perhaps JAXB might be better? My question is, is there another way to store data that would be more appropriate? Am i thinking along the right lines using xml files and JAXB?
Thanks for any input
