I can parse xml just fine with SAXParserFactory in Java, BUT in some files,
there are some non-lowercase attributes present, like linear3D="0.5"
etc.
I would like to somehow make
attributes.getValue(attr)
case-insensitive, so that attributes.getValue("linear3d")
returns "0.5".
One solution would be to read the file as a string first, convert to lowercase, and then parse, since there is no ambiguity in doing this in this type of xml. However, can this be done more simply, by adding some flag to the factory or similar?