博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java执行shell、cmd命令
阅读量:5789 次
发布时间:2019-06-18

本文共 1315 字,大约阅读时间需要 4 分钟。

import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;/** * Created by sweet on 2017/9/25. */public class ExecuteShellComand {  public static void main(final String[] args) throws IOException, InterruptedException {    String s = null;    try {//      String[] arr = new String[]{"/bin/sh", "-c", "ls -l"};  // Linux       String[] arr = new String[]{
"cmd.exe", "/c", "dir"}; // Windows Process p = Runtime.getRuntime().exec(arr); BufferedReader stdInput = new BufferedReader(new InputStreamReader(p.getInputStream())); BufferedReader stdError = new BufferedReader(new InputStreamReader(p.getErrorStream())); System.out.println("Here is the standard output of the command:\n"); while ((s = stdInput.readLine()) != null) { System.out.println(s); } System.out.println("Here is the standard error of the command (if any):\n"); while ((s = stdError.readLine()) != null) { System.out.println(s); } System.exit(0); } catch (IOException e) { System.out.println("exception happened - here's what I know: "); e.printStackTrace(); System.exit(-1); } }}复制代码

原文在 http://www.baeldung.com/run-shell-command-in-java https://alvinalexander.com/java/java-exec-system-command-pipeline-pipe

转载地址:http://oemyx.baihongyu.com/

你可能感兴趣的文章
深入理解浏览器的缓存机制
查看>>
微软向Linux社区开放60000多项专利:对开源微软是认真的
查看>>
Hoshin Kanri在丰田的应用
查看>>
又拍云沈志华:如何打造一款安全的App
查看>>
克服大数据集群的挑战
查看>>
PostgreSQL并发控制(MVCC, 事务,事务隔离级别)
查看>>
DM***的第二阶段OSPF
查看>>
20180702搭建青岛RAC记录
查看>>
Spring Security OAuth 实现OAuth 2.0 授权
查看>>
linux文件及简单命令学习
查看>>
dubbo源码分析-架构
查看>>
新 Terraform 提供商: Oracle OCI, Brightbox, RightScale
查看>>
6套毕业设计PPT模板拯救你的毕业答辩
查看>>
IT兄弟连 JavaWeb教程 JSP与Servlet的联系
查看>>
Windows phone 8 学习笔记
查看>>
linux并发连接数:Linux下高并发socket最大连接数所受的各种限制
查看>>
详解区块链中EOS的作用。
查看>>
我的友情链接
查看>>
mysql-error 1236
查看>>
sshd_config设置参数笔记
查看>>