-
Now , we have the decrypted XML File. How to parse the data
from the XML File.
-
Two options - JAXB or Simple Parsing using DOM or SAX
Parser.
-
How JAXB works ?
-

-
After running the JAXB compiler, following Java interfaces
and their implementation classes are generated
Address, AddressType, Creditcardinfo, CreditcardinfoType,
Creditcardpayment, CreditcardpaymentType, Customer, CustomerType
-
public class CreditCardProcessor {
private String packageName = "generated";
private String xmlFileName = "";
private JAXBContext jaxbContext;
private Unmarshaller unmarshaller;
private File file;
private Creditcardpayment creditCardpayment;
CreditCardProcessor(String xmlFile) {
this.xmlFileName = xmlFile;
System.out.println("Inside CreditCardProcessor " + this.xmlFileName);
createCreditcardpayment();
}
private void createCreditcardpayment() {
try
{
createContext();
createUnmarshaller();
createFile();
unmarshalFile();
}
catch (JAXBException e) {
System.out.println("There has been a problem either creating the "
+ "context for package '" + packageName +
"', creating an unmarshaller for it, or unmarshalling the '" +
xmlFileName + "' file. Formally, the problem is a " + e);
}
catch (FileNotFoundException e) {
System.out.println("There has been a problem locating the '" +
xmlFileName + "' file. Formally, the problem is a " + e);
}
}
private void createContext() throws JAXBException {
try
{
System.out.println("Before creating Context ");
jaxbContext = JAXBContext.newInstance(packageName);
System.out.println("Context created");
}
catch(Exception e)
{
e.printStackTrace();
}
}
private void createUnmarshaller() throws JAXBException {
System.out.println("Inside createUnmarshaller" );
try
{
unmarshaller = jaxbContext.createUnmarshaller();
unmarshaller.setValidating(true);
}
catch(Exception e)
{
e.printStackTrace();
}
}
private void createFile() throws FileNotFoundException{
file = new File(xmlFileName);
if (!file.exists()) throw new FileNotFoundException();
}
private void unmarshalFile() throws JAXBException {
System.out.println("Inside unmarshalFile" );
creditCardpayment = (Creditcardpayment) unmarshaller.unmarshal(file);
}
public Creditcardpayment readCreditcardpayment() {
return creditCardpayment; //Client creates an instance of this class and
invokes this method
}
}
|