获取xml配置文件中参数demo

前端之家收集整理的这篇文章主要介绍了获取xml配置文件中参数demo前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
	public static String getParameter(String name) {
		String xpath = "/webapp-configs/param[@name='" + name + "']/@value";
		Node node = instance.configDocument.selectSingleNode(xpath);
		if (node == null) {
			instance.logger.error("配置参数[" + name + "]不存在");
			return "";
		}
		return node.getText();
	}
原文链接:https://www.f2er.com/xml/297757.html

猜你在找的XML相关文章