本篇文章給大家分享的是有關(guān)Java中怎么調(diào)用shell腳本解決傳參和權(quán)限問題,小編覺得挺實用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
創(chuàng)新互聯(lián)建站主營深澤網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,app軟件開發(fā)公司,深澤h5微信小程序開發(fā)搭建,深澤網(wǎng)站營銷推廣歡迎深澤等地區(qū)企業(yè)咨詢
1. java 執(zhí)行shell
java 通過 Runtime.getRuntime().exec() 方法執(zhí)行 shell 的命令或 腳本,exec()方法的參數(shù)可以是腳本的路徑也可以是直接的 shell命令
代碼如下(此代碼是存在問題的。完整代碼請看2):
/** * 執(zhí)行shell * @param execCmd 使用命令 或 腳本標(biāo)志位 * @param para 傳入?yún)?shù) */ private static void execShell(boolean execCmd, String... para) { StringBuffer paras = new StringBuffer(); Arrays.stream(para).forEach(x -> paras.append(x).append(" ")); try { String cmd = "", shpath = ""; if (execCmd) { // 命令模式 shpath = "echo"; } else { //腳本路徑 shpath = "/Users/yangyibo/Desktop/callShell.sh"; } cmd = shpath + " " + paras.toString(); Process ps = Runtime.getRuntime().exec(cmd); ps.waitFor(); BufferedReader br = new BufferedReader(new InputStreamReader(ps.getInputStream())); StringBuffer sb = new StringBuffer(); String line; while ((line = br.readLine()) != null) { sb.append(line).append("\n"); } String result = sb.toString(); System.out.println(result); } catch (Exception e) { e.printStackTrace(); } }
2. 遇到的問題和解決
傳參問題,當(dāng)傳遞的參數(shù)字符串中包含空格時,上邊的方法會把參數(shù)截斷,默認(rèn)為參數(shù)只到空格處。
解決:將shell 命令或腳本 和參數(shù) 放在一個 數(shù)組中,然后將數(shù)組傳入exec()方法中。
權(quán)限問題,當(dāng)我們用 this.getClass().getResource("/callShell.sh").getPath() 獲取腳本位置的時候取的 target 下的shell腳本,這時候 shell 腳本是沒有執(zhí)行權(quán)限的。
解決:在執(zhí)行腳本之前,先賦予腳本執(zhí)行權(quán)限。
完整的代碼如下
/** * 解決了 參數(shù)中包含 空格和腳本沒有執(zhí)行權(quán)限的問題 * @param scriptPath 腳本路徑 * @param para 參數(shù)數(shù)組 */ private void execShell(String scriptPath, String ... para) { try { String[] cmd = new String[]{scriptPath}; //為了解決參數(shù)中包含空格 cmd=ArrayUtils.addAll(cmd,para); //解決腳本沒有執(zhí)行權(quán)限 ProcessBuilder builder = new ProcessBuilder("/bin/chmod", "755",scriptPath); Process process = builder.start(); process.waitFor(); Process ps = Runtime.getRuntime().exec(cmd); ps.waitFor(); BufferedReader br = new BufferedReader(new InputStreamReader(ps.getInputStream())); StringBuffer sb = new StringBuffer(); String line; while ((line = br.readLine()) != null) { sb.append(line).append("\n"); } //執(zhí)行結(jié)果 String result = sb.toString(); } catch (Exception e) { e.printStackTrace(); } }
以上就是Java中怎么調(diào)用shell腳本解決傳參和權(quán)限問題,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。