Search:

Type: Posts; User: Norm

Search: Search took 0.46 seconds.

  1. Re: How to create a folder with spaces written in Java under Linux?

    Did it work as you wanted?
  2. Re: How to create a folder with spaces written in Java under Linux?

    Create an array with each item of the command line in one element of the array:

    String[] cmdLine = {"the command", "arg1 for the command", "arg2 for the command"};
    ...

    ...exec(cmdLine);
  3. Re: How to create a folder with spaces written in Java under Linux?

    If you have problems with the syntax that uses a single String for the command line, try using an array for the parts of the command line. The exec() method takes an array for an arg
Results 1 to 3 of 3