Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4937512

com.sun.jndi.ldap.Filter uses String.getBytes - native enc incorrectly assumed

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Not an Issue
    • Icon: P5 P5
    • None
    • 1.4.2, 5.0u4
    • core-libs

      This is the jndi related part of bug 4927428 which reports the following
      general problem in the jdk.


      We are currently into porting J2SE V1.4.2 to our mainframe platform,
      where the native encoding is EBCDIC. Several tests in JCK failed because
      of the careless use of java.lang.String.getBytes() in other java classes;
      use of native encoding is essentially wrongfully hardcoded into these
      classes.

      We compiled the following list of modifications that were necessary to
      pass the JCK tests. There are a lot more suspicious uses of getBytes(),
      where we were not able to decide whether their usage is right or wrong.

      ACTION ITEM:
      Please initiate some kind of overall review of the encoding issue,
      and fix all java classes where the problem occurs.

      === Start of list ===

      The method getBytes() in java.lang.String converts implictly with native
      encoding. The usage of this method on machines where native encoding is
      not ISO-8859-1 or some compatible ASCII encoding is wrong in J2SE SDK
      1.4.2 in the following cases.

      com/sun/jndi/ldap/Filter.java
      // wrong line 411
      dprint(", type: ", Integer.toString(filterType, 16).getBytes());
      // correction:
      dprint(", type: ", Integer.toString(filterType, 16).getBytes("ISO-8859-1"));

      === end of list ===

            vtewari Vyom Tewari
            iris Iris Clark
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: