Java for 循环问题 求大师
List<Element>Rates=XMLUtils.getElements(doc,"//ari:Rate");for(ElementRate:Rates){Stri...
List<Element> Rates = XMLUtils.getElements(doc,"//ari:Rate");
for (Element Rate : Rates){
String AmountBeforeTax;
AmountBeforeTax = Rate.attributeValue("AmountBeforeTax");
System.out.println("Debug: AmountBeforeTax =" + AmountBeforeTax);
}
这是个动态数组循环,打印出来如下:
Debug: AmountBeforeTax =111.11
Debug: AmountBeforeTax =138
我有一组数据:
Expect_AmountBeforeTax_1 = 111.11
Expect_AmountBeforeTax_2 = 222.22
我希望用我这组数据和上面的数据进行匹配对比
111.11 和 111.11对比 138 和 222.22对比
但实际结果是
111.11 / 138 和 111.11 对比 111.11 / 138 和 222.22 对比 展开
for (Element Rate : Rates){
String AmountBeforeTax;
AmountBeforeTax = Rate.attributeValue("AmountBeforeTax");
System.out.println("Debug: AmountBeforeTax =" + AmountBeforeTax);
}
这是个动态数组循环,打印出来如下:
Debug: AmountBeforeTax =111.11
Debug: AmountBeforeTax =138
我有一组数据:
Expect_AmountBeforeTax_1 = 111.11
Expect_AmountBeforeTax_2 = 222.22
我希望用我这组数据和上面的数据进行匹配对比
111.11 和 111.11对比 138 和 222.22对比
但实际结果是
111.11 / 138 和 111.11 对比 111.11 / 138 和 222.22 对比 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询