The type javax.xml.stream.XMLStreamReader cannot be resolved

后端 未结 2 403
情歌与酒
情歌与酒 2021-01-22 08:23

The type javax.xml.stream.XMLStreamReader cannot be resolved. It is indirectly referenced from required .class files.Im getting this error in a line.Which jar am i missing?

2条回答
  •  执念已碎
    2021-01-22 09:09

    javax.xml.stream.XMLStreamReader is available on Java SE 6 and higher: not on the Android platform. You must be using a library that depends on that class, but it isn't a standard part of the platform. https://www.findjar.com/class/javax/xml/stream/XMLStreamReader.html has a list of jar files that may have it, but no guarantees you'll be able to successfully incorporate them.

提交回复
热议问题