Posts by Ask4J • 31 points
2 posts
- 
		2 votes1 answer3889 viewsA: java.lang.Unsupportedclassversionerror: Unsupported major.minor version 52.0 when running JARThe first problem is related to the version of java used to compile the jar. In this case, the jar has been compiled with version 1.8 and is trying to run it with a lower version. Depending on the… 
- 
		1 votes1 answer199 viewsA: Selective reading of an XMLThe easiest way is to use Xpath to filter only Plan elements that are direct children of the explain element. Example : XPathFactory xPathfactory = XPathFactory.newInstance(); XPath xpath =…