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.
请问,有什么方法可以将我通过互联网获得的响应转换为 xml DOM 文档?我知道响应文本是 xml 格式的(服务器正在发送 xml 格式的响应)。我没有使用 Java 中的 http 通信,所以我不知道该怎么做。谷歌搜索了一段时间后,我发现了几个例子,但没有运气。
如果我使用这里描述的方法,我的 Document 等于 null :\
请问有什么帮助吗?
我找到了一个方法:
Document doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(link);
:)))