-
Type:
Bug
-
Resolution: Won't Fix
-
Priority:
P3
-
Affects Version/s: 5.0u4
-
Component/s: other-libs
-
generic
-
generic
Please first read Comments section here and in 6317399.
In com/sun/corba/se/impl/ior/WireObjectKeyTemplate.java (5.0u4):
// wrong line 134
String str = new String( bid ) ;
// correction
String str = null;
try {
str = new String( bid ,"ISO-8859-1") ;
} catch (java.io.UnsupportedEncodingException ex) {
}
In com/sun/corba/se/impl/ior/WireObjectKeyTemplate.java (5.0u4):
// wrong line 134
String str = new String( bid ) ;
// correction
String str = null;
try {
str = new String( bid ,"ISO-8859-1") ;
} catch (java.io.UnsupportedEncodingException ex) {
}
- relates to
-
JDK-6317399 umbrella bug: various J2SE 5.0 encoding bugs with limited number of root causes
-
- Closed
-