You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
XML can be read from java.io.Reader, and often people do that, yet the
javax.xml.bind.Unmarshaller interface doesn't have a version that takes
java.io.Reader.
This is a strange omission given that the Marshaller has a version of the
marshal method that takes java.io.Writer.
Currently the user can work around this problem by:
unmarshaller.unmarshal(new StreamSource(reader));
Environment
Operating System: All
Platform: All
Affected Versions
[2.0 v0.4]
The text was updated successfully, but these errors were encountered:
XML can be read from java.io.Reader, and often people do that, yet the
javax.xml.bind.Unmarshaller interface doesn't have a version that takes
java.io.Reader.
This is a strange omission given that the Marshaller has a version of the
marshal method that takes java.io.Writer.
Currently the user can work around this problem by:
unmarshaller.unmarshal(new StreamSource(reader));
Environment
Operating System: All
Platform: All
Affected Versions
[2.0 v0.4]
The text was updated successfully, but these errors were encountered: