When using SAX to parse an XML file in Java, what is the difference between the parameters localname and qname in SAX methods such as
Generally speaking, localname is the local name, meaning inside the namespace. qname, or qualified name, is the full name (including namespace). For example,
This is however very general, and settings-dependant. Take a look at the example at the end of this page for a more thorough example: example