サンプル xml 、
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Issue>
<Snippet>
sri;;
hiil
bye;
tc;
</Snippet>
</Issue>
スニペットタグ内の文字全体を取得することは可能ですか??
これが実装である場合、
public void startElement(String uri, String localName,
String qName, Attributes attributes) throws SAXException {
temp = "";
if (qName.equalsIgnoreCase("Issue")) {
acct = new Account();
public void endElement(String uri, String localName, String qName)
throws SAXException {
if (qName.equalsIgnoreCase("Issue")) {
// add it to the list
accList.add(acct);
else if(qName.equalsIgnoreCase("Snippet"))
{
acct.setPrimarySnippet(temp);
}
O/p は tc です。しかし、印刷するにはスニペットタグ内の値全体が必要です。