我可以将“configFile”传递为 /file/es/Promo/promo*.xml 而不是 /file/es/Promo/pricing.xml
如果不是我怎么能做到这一点?请指导
// First create a new XMLInputFactory
XMLInputFactory inputFactory = XMLInputFactory.newInstance();
// Setup a new eventReader
InputStream in = new FileInputStream(configFile);
XMLEventReader eventReader = inputFactory.createXMLEventReader(in);
// Read the XML document
请建议。