-
Bug
-
Resolution: Fixed
-
P2
-
6
-
1.4
-
generic
-
generic
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2185512 | 7 | Joe Wang | P3 | Closed | Fixed | m05 |
JDK-2182523 | 6u18 | Joe Wang | P2 | Resolved | Fixed | b02 |
XMLOutputFactory of = XMLOutputFactory.newInstance();
XMLStreamWriter w = of.createXMLStreamWriter(new ByteArrayOutputStream());
System.out.println(w);
The above code throws the following exception when run with JDK6.
Exception in thread "main" java.lang.UnsupportedOperationException
at com.sun.xml.internal.stream.writers.XMLStreamWriterImpl.entrySet(XMLStreamWriterImpl.java:2126)
at java.util.AbstractMap.toString(AbstractMap.java:478)
at java.lang.String.valueOf(String.java:2827)
at java.io.PrintStream.println(PrintStream.java:771)
at WhichSjsxp.main(WhichSjsxp.java:21)
XMLStreamWriter w = of.createXMLStreamWriter(new ByteArrayOutputStream());
System.out.println(w);
The above code throws the following exception when run with JDK6.
Exception in thread "main" java.lang.UnsupportedOperationException
at com.sun.xml.internal.stream.writers.XMLStreamWriterImpl.entrySet(XMLStreamWriterImpl.java:2126)
at java.util.AbstractMap.toString(AbstractMap.java:478)
at java.lang.String.valueOf(String.java:2827)
at java.io.PrintStream.println(PrintStream.java:771)
at WhichSjsxp.main(WhichSjsxp.java:21)
- backported by
-
JDK-2182523 toString(), hashCode() throw Exception
-
- Resolved
-
-
JDK-2185512 toString(), hashCode() throw Exception
-
- Closed
-