Exemplo n.º 1
0
 public static XMLStreamReader getXMLStreamReader(String text) throws XMLStreamException {
   return HoldMe.getXMLInputFactory()
       .createXMLStreamReader(new ByteArrayInputStream(text.getBytes()));
 }
Exemplo n.º 2
0
 public static XMLStreamReader getXMLStreamReader(InputStream in) throws XMLStreamException {
   return HoldMe.getXMLInputFactory().createXMLStreamReader(in);
 }