e = (Element)xpath.selectSingleNode(document);
String privateBytes = e.getText();
System.out.println("private bytes:" + privateBytes);
xpath = XPath.newInstance("//Table[@name='collection']/Item/Data[@name='start']");
e = (Element)xpath.selectSingleNode(document);
String year = e.getAttributeValue("year");
String month = e.getAttributeValue("month");
String day = e.getAttributeValue("day");
String hour = e.getAttributeValue("hour");
String minute = e.getAttributeValue("minute");