Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Java 中使用 SAXParser 来解析我的 XML 文档。现在我想提高性能并一次解析多个文档。
这可能吗?
是的,您可以使用并发编程来做到这一点。产生不同的线程,每个线程解析一个文档将实现多线程 XML 解析。使用线程池将简化实现。