1

この文字列を XML 形式で持っています

 <?xml version="1.0" encoding="UTF-8"?>n
  <objectA>n
  <command>Existing</command>n
  <status>OK</status>n
  <values>a lot of values....</values>n
  </objectA>

値とコンテンツだけで文字列の配列に分割したい

     [0] objectA = ""
     [1] command = Existing
     [2] status = ok
     [3] values = a lot of values....

私は試した

 result = result.replaceAll(">n<", "><"); //$NON-NLS-1$ //$NON-NLS-2$
 Pattern pattern = Pattern.compile("<*?>*?</*?>"); //$NON-NLS-1$

しかし、それは私のために働いていません

4

1 に答える 1

1

XMLパーサーを使用しないのはなぜですか?

Element docElem = document.getDocumentElement();

NodeList children = docElem.getChildNodes();

List<String> values = new ArrayList<String>();

for(int x = 0; x < children.getLength(); x++)
{
     // Do what you want with children. That came out wrong.
}
于 2013-08-20T07:48:48.737 に答える