You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@netbeans.apache.org by GitBox <gi...@apache.org> on 2022/05/20 18:22:18 UTC

[GitHub] [netbeans] duoduobingbing commented on issue #4017: ASCII/UNICODE BUG K=75

duoduobingbing commented on issue #4017:
URL: https://github.com/apache/netbeans/issues/4017#issuecomment-1133189635

   > the screenshots shows 12.6 but the issue had "latest daily build" selected. Someone please test NetBeans 13 and 14rc4 so that we know that this is in fact not already fixed, e.g via #3289 or #3836
   
   I haved test this for Netbeans 13 + Java 17.0.3 under Windows 10
   when having system variable `MAVEN_OPTS=-Dfile.encoding=UTF-8`:
   
   The Code
   ```java
   public static class Main{
    public static void main(String args[]) throws Exception {
           
           System.out.println(75 + " " + (char)75);
           System.out.println((char)75);   
           System.out.println(Charset.defaultCharset());
   
       }
   }
   ```
   when executing a Maven project yields
   ```
   K
   UTF-8
   ```
   in the Netbeans Console.
   
   The line `75 K` is always missing.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@netbeans.apache.org
For additional commands, e-mail: notifications-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists