Package org.ita.capes

Examples of org.ita.capes.ListaProfessoresSAXHandler


public class LeitorIef {
 
  private Parser parser = new Parser();
 
  public List<Professor> getProfessores(InputStream is) throws IOException, SAXException{
    ListaProfessoresSAXHandler handler = new ListaProfessoresSAXHandler();
    parser.setContentHandler(handler);
    InputSource input = new InputSource(is);
    parser.parse(input);
    return handler.getLista();
  }
View Full Code Here

TOP

Related Classes of org.ita.capes.ListaProfessoresSAXHandler

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.