Serialize an object to XML and append for 1 day

AppenoAppak

New Member
So, I made another question "Save object data to a file" and I realized that I wasn't specific enough. The program that I'm writing would do very well for itself to keep historical data of files, so my goal is something like this:\[code\]if timePolled > midnight if fileExists(fileName) appendData() else createFile(data_dd_mm_yy) // in xmlendif\[/code\]Look at me being all VB above... ickAnyways, the object itself looks something like this: \[code\]public class IHandler{ public double currentLoad; public String currentPrice; public String configArgs[];}\[/code\]I'm not really sure how I would go about doing this.
 
Back
Top