我从 XML 文件中收集了 som 数据,现在我正在尝试编辑数据以使其适合我的程序。我收集的数据说明了给定参数的最小值和最大值,但是我只对最小值或最大值感兴趣。
XML 数据源如下所示:
<tolerated>
<UMIN2> [ 181.2 186.8 ] </UMIN2>
<T_UMIN2> [ 0.4 0.6 ] </T_UMIN2>
<UMIN1> [ 197 203 ] </UMIN1>
<T_UMIN1> [ 2.4 2.6 ] </T_UMIN1>
<UMAX1> [ 249.2 256.8 ] </UMAX1>
<T_UMAX1> [ 0.9 1.1 ] </T_UMAX1>
<UMAX2> [ 260 268 ] </UMAX2>
<T_UMAX2> [ 0.4 0.6 ] </T_UMAX2>
</tolerated>
我已经让我的程序通过此代码将此数据加载到名为 tol 的字符串中
public static String tolerance() throws SAXException, IOException, ParserConfigurationException, XPathExpressionException{
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
Document doc = builder.parse(O1.replace("\\","\\\\"));
XPathFactory xpf = XPathFactory.newInstance();
XPath xpath = xpf.newXPath();
String tTemp = new String();
XPathExpression expr1 = xpath.compile("ptfGen/body/gridCode/"+header2.substring(31,header2.length()-23)+"/tolerated");
Node nodeGettingChanged1 = (Node) expr1.evaluate(doc, XPathConstants.NODE);
String toldata = new String();
NodeList childNodes1 = nodeGettingChanged1.getChildNodes();
for (int i = 0; i != childNodes1.getLength(); i++)
{
Node child = (Node) childNodes1.item(i);
if (!(child instanceof Element))
continue;
if (child.getNodeName().equals("tolerated"));{
toldata = child.getFirstChild().getNodeValue();
tTemp += toldata.substring(3,toldata.length()-3).replace(" ", "\n") + "\n";
}
tol = tTemp;
}
return tTemp;
}
这为我提供了换行符分隔的所有值。
我现在的问题是我可以/如何删除所有其他条目,以便我只有最小值或最大值?'
我现在得到的输出类似于
tol = {"181.2\n186.8\n0.4\n0.6\n197\n......."};
我正在寻找的是
tol = {"181.2\n0.4\n197\n......."};