You can make system calls with java by using Process.
String command = "mkdir new_dir";
Process createNewDir = Runtime.getRuntime().exec(command);
Yuet Sim Lee wrote:
> I am writing a Java code which has to
> call another C-program. I knew that
> C has a system call, exec or system.
>
> Are there any similar system call in Java?
>
> ----------------------------------------------------------------------
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
----------------------------------------------------------------------
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]