附上两个屏幕截图和我的代码。我正在尝试将 animation_sequence 作为结束和结束括号,我已尽力而为,但现在我寻求您的帮助。这是我的尝试,我决定这样做,但现在我的状态,如“Yahoo”中显示为“Yahoo”,我知道它可能与动画序列的 setTextContent (虽然我不明白怎么能在我的状态内容中添加空格.我的问题是我想要的只是我的动画序列有右括号和结尾括号.我通过在 if 语句中寻找两个额外的空格来解决,但我觉得这是一种可悲的方法,而且它有点像接受失败。我附加的第二个图像是我希望实现的,而不是在我的状态中添加额外的“”。如果没有我下面的代码(具体的设置文本内容部分),它会生成图像。就在我以为我解决了它时,这两个空间正在杀死我。如果您需要任何额外的代码,请告诉我。我需要你的帮助。
Element animationState = testDoc.createElement("animation_state");
Element sequence = testDoc.createElement("animation_sequence");
sequence.setTextContent(" ");
sequence.appendChild(testDoc.createTextNode(" "));
testDoc.getElementsByTagName("animations_list").item(0).appendChild(animationState).appendChild(state);
testDoc.getElementsByTagName("animation_state").item(testDoc.getElementsByTagName("state").getLength() - 1).appendChild(sequence);
for(int i = 0; i<testDoc.getElementsByTagName("animation_state").getLength(); i++)
{
if( testDoc.getElementsByTagName("animation_state").item(i).getTextContent().
equals(Poseur.getPoseur().getAnimatedSpriteViewer().getSpriteStateComboBox().
getSelectedItem().toString())||(testDoc.getElementsByTagName("animation_state").item(i).getTextContent()).equals(Poseur.getPoseur().getAnimatedSpriteViewer().getSpriteStateComboBox().getSelectedItem().toString()+" "))
{
testDoc.getElementsByTagName("animation_sequence").item(i).appendChild(poseImage);
}
}