我得到了这个特定的 XML 文件,它看起来像这样:
<App01_Storage Type="VOLATILE" Size="200000" Speed="15" LatencyMaxWrite="1" LatencyMaxRead="2" Endurance="12" WorkloadPeak="15" />
在我的程序中,我遍历根节点的所有子节点。我的目的是让所有孩子都有他们的属性+价值观。一个孩子看起来像上面的代码。
System.out.println(node.getName());
System.out.println(node.getAttributes());
System.Out-Method 给了我这个输出:App01_Storage [[Attribute: Type="VOLATILE"], [Attribute: Size="200000"], [Attribute: Speed="15"], [Attribute: LatencyMaxWrite="1 "]、[属性:LatencyMaxRead="2"]、[属性:Endurance="12"]、[属性:WorkloadPeak="15"]]
我想我走对了。根据我的理解,一个属性应该是这样的: Attribute.Name = Attribute.Value
我想将属性和值保存在不同的类中,并且不知道如何准确地获取值和名称。我现在得到的输出是一个列表,每个条目 Attributename = Attributevalue,就像一个字符串。有了这个单一的字符串,我无法工作。
我看错了吗?希望我能解释一下自己。非常感谢:)