We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When you add printing value of staff node, it turns out that it has the value of the last nested node (bio):
@Override public void endElement(String uri, String localName, String qName) { ... if (qName.equalsIgnoreCase("staff")) { System.out.printf("staff : %s%n", currentValue.toString()); } }
console before:
End Element : bio Bio : HTML tag <code>testing</code> End Element : staff Start Element : staff Staff id : 1002
console after:
Bio : HTML tag <code>testing</code> End Element : staff staff : HTML tag <code>testing</code> Start Element : staff Staff id : 1002
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When you add printing value of staff node, it turns out that it has the value of the last nested node (bio):
console before:
console after:
The text was updated successfully, but these errors were encountered: