我想将 XML 文件中包含的值存储到 java 字符串对象中。这是我的 XML 代码:
<properties>
<comment>test.xml</comment>
<entry key="1">test1</entry>
<entry key="2">test1,test2,test3</entry>
<entry key="3">test1,test2,test3</entry>
<properties>
我希望将“值”存储在字符串中。例如:
String msg;
if(msg.equals("1")){
String str1 = //get values of key "1" (ie) test1
}
else if(msg.equals("2")){
String str2 = //get values of key "2" (ie) test1,test2,test3
}
有没有办法使用 HashMap 或任何东西来做到这一点?谢谢。