mbien commented on issue #4622:
URL: https://github.com/apache/netbeans/issues/4622#issuecomment-1672382992

   ```java
   public class NewJavaFile {
       public static void main(String args[]) {
           System.out.println("arguments:");
           for (String arg : args) {
               System.out.println("arg: "+arg);
           }
       }
   }
   ```
   ```
   expected:
   $ java NewJavaFile.java "one two" three
   arguments:
   arg: one two
   arg: three
   ```
   
   in NB:
   
![image](https://github.com/apache/netbeans/assets/114367/63249e66-c3f6-44fd-9738-a4bb1d508aff)
   ```
   arguments:
   arg: "one
   arg: two"
   arg: three
   ```
   


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

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

Reply via email to