devxlogo

C/C++ system() equivalent

C/C++ system() equivalent

Question:
Does Java have a command that does what thesystem() function does in C, or a way to emulatethis action? For example, in C, system(“ls”); would call “ls” from the command line.

Answer:
Yes, Java supports the execution of shell commands through a method call. The exec() methods of the java.lang.Runtime class are the rough analogs to the C standard library system() function. The behavior of Runtime.exec is a little different though, so you have to be aware of a few things.

First, you have to obtain a reference to thedefault Runtime instance for your application. You do this by calling the staticRuntime.getRunTime() method. Second, you have to call one of the exec() methods with appropriate arguments. This will return a java.lang.Process reference to the executed command.

Where the C system() function blocks until the command finishes, the Runtime.exec() methods do not block. To obtain the blocking behavior, you must call the Process.waitFor(), which will wait for the process to finish executing. In certain respects, Runtime.exec() is more like UNIX’s popen(), because after you get the Process reference, you can interact with the input, output, and error streams while the process executes concurrently.

Your example would work as follows in Java (exception handling is omitted):

Runtime runtime = Runtime.getRuntime();Process process = Runtime.exec("/bin/ls");process.waitFor();

Keep in mind that whenever you rely on exec(), your code will almost surely not be portable to other systems.

See also  Why ChatGPT Is So Important Today
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist