Java invokes the shell command under Linux and returns the result as a stream __web

Source: Internet
Author: User
Tags stringbuffer

This article writes that Java invokes the Linux shell command and returns the result as a stream.


The following is directly on the code, the code is annotated.

Very plain and easy to understand.


Import Java.io.BufferedReader;
Import java.io.IOException;
Import Java.io.InputStreamReader;

public class Main
{public
	static void Main (string[] args)
	{
		
		//Get the related Runtime run object of the Java process
		Runtime runtime = Runtime.getruntime ();

		Try
		{
			///Use the Exec () method to execute the shell command Ls-al/root and return a process object that is a subprocess
			//ps: Here are examples of the simplest shell commands.
			Process Process = Runtime.exec ("Ls-al/root"); 

			BufferedReader bufferreader = new BufferedReader (
					new InputStreamReader (Process.getinputstream ()));

			StringBuffer StringBuffer = new StringBuffer ();

			String temp = null;

			while (temp = Bufferreader.readline ())!= null)
			{
					stringbuffer.append (temp);
					
					Stringbuffer.append ("\ n");
			}
			
			System.out.println (StringBuffer);

		}
		catch (IOException e)
		{
			e.printstacktrace ();
		}
	}
}


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.