您好,登錄后才能下訂單哦!
小編給大家分享一下Java.Utils怎么執(zhí)行命令行命令,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
1.SpringMVC,Spring Web MVC是一種基于Java的實現(xiàn)了Web MVC設(shè)計模式的請求驅(qū)動類型的輕量級Web框架。2.Shiro,Apache Shiro是Java的一個安全框架。3.Mybatis,MyBatis 是支持普通 SQL查詢,存儲過程和高級映射的優(yōu)秀持久層框架。4.Dubbo,Dubbo是一個分布式服務(wù)框架。5.Maven,Maven是個項目管理和構(gòu)建自動化工具。6.RabbitMQ,RabbitMQ是用Erlang實現(xiàn)的一個高并發(fā)高可靠AMQP消息隊列服務(wù)器。7.Ehcache,EhCache 是一個純Java的進程內(nèi)緩存框架。
package org.bood.common.utils;import java.io.BufferedReader;import java.io.InputStreamReader;import java.util.Properties;/** * <p> * 執(zhí)行命令行命令 * </p> * * @author:bood * @date:2020/10/16 */public class CommandUtils { public CommandUtils() { } /** * <p> * 執(zhí)行命令 * </p> * * @param commandLine: 命令 * @return:java.lang.String * @author:bood * @date:2020/10/16 */ public static String execute(String commandLine) throws Exception { String[] cmd = new String[3]; Properties props = System.getProperties(); String osName = props.getProperty("os.name").toLowerCase(); String charset=null; String result=""; if (osName.startsWith("windows")) { cmd[0] = "cmd.exe"; cmd[1] = "/C"; cmd[2] = commandLine; charset="GBK"; } else if (osName.startsWith("linux")) { cmd[0] = "sh"; charset="UTF-8"; } Process ps = Runtime.getRuntime().exec(cmd); String line = null; BufferedReader input = new BufferedReader(new InputStreamReader(ps.getInputStream(),charset)); while ((line = input.readLine()) != null) { result+=line+"\n"; } input.close(); ps.destroy(); return result; }}
以上是“Java.Utils怎么執(zhí)行命令行命令”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。