Java calls shell commands and obtains execution results

Source: Internet
Author: User
Tags call shell

The process and runtime classes are used. The returned values are obtained using the getinputstream () method of the Process class.

package ark;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.util.ArrayList;import java.util.List;public class ReadCmdLine {public static void main(String args[]) {Process process = null;List<String> processList = new ArrayList<String>();try {process = Runtime.getRuntime().exec("ps -aux");BufferedReader input = new BufferedReader(new InputStreamReader(process.getInputStream()));String line = "";while ((line = input.readLine()) != null) {processList.add(line);}input.close();} catch (IOException e) {e.printStackTrace();}for (String line : processList) {System.out.println(line);}}}

Call the shell script to determine whether the execution is normal. If the process ends normally, the waitfor () method of process returns 0.

public static void callShell(String shellString) {try {Process process = Runtime.getRuntime().exec(shellString);int exitValue = process.waitFor();if (0 != exitValue) {log.error("call shell failed. error code is :" + exitValue);}} catch (Throwable e) {log.error("call shell failed. " + e);}}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.