MCPcopy Create free account
hub / github.com/defineYIDA/LWebServer / XMLUtil

Class XMLUtil

src/main/java/cn/lws/server/util/XMLUtil.java:10–21  ·  view source on GitHub ↗

Created by zl on 2019/03/01.

Source from the content-addressed store, hash-verified

8 * Created by zl on 2019/03/01.
9 */
10public class XMLUtil {
11
12 public static Document getDocument(String xmlURL) {
13 try {
14 SAXReader reader = new SAXReader();
15 return reader.read(xmlURL);
16 } catch (DocumentException e) {
17 e.printStackTrace();
18 }
19 return null;
20 }
21}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected