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

IDN cannot handle "." properly

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P2 P2
    • None
    • None
    • core-libs
    • None

      If "." is an valid IDN that comply to RFC 3490, IDN.toASCII() should be able to handle it; otherwise, IDN.toASCII() should throw IAE as the specification suggested. However, IDN.toASCII(".") throws StringIndexOutOfBoundsException, this behavior does not comply the the specification:

      String host = IDN.toASCII(".", IDN.USE_STD3_ASCII_RULES);
      Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 0
              at java.lang.StringBuffer.charAt(StringBuffer.java:204)
              at java.net.IDN.toASCIIInternal(IDN.java:279)
              at java.net.IDN.toASCII(IDN.java:118)

            xuelei Xuelei Fan
            xuelei Xuelei Fan
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: