digester parser error java.lang.NoSuchMethodException: Employee.<init>()
问题 I am trying to parse an xml using digester . My XML <root> <Employee> <Id>1</Id> <FirstName>Charles</FirstName> <LastName>Madigen</LastName> <Location>Louisiana</Location> <Skill>Accountant</Skill> </Employee> </root> My Employee class public class Employee { private int empId; private String fName; private String lName; private String location; private String skill; public Employee(int empId, String fName, String lName, String location, String skill) { this.empId = empId; this.fName = fName;