- /**
- *运行shell脚本
- *@paramshell需要运行的shell脚本
- */
- publicstaticvoidexecShell(Stringshell){
- try{
- Runtimert=Runtime.getRuntime();
- rt.exec(shell);
- }catch(Exceptione){
- e.printStackTrace();
- }
- }
- /**
- *运行shell
- *
- *@paramshStr
- *需要执行的shell
- *@return
- *@throwsIOException
- */
- publicstaticListrunShell(StringshStr)throwsException{
- List<String>strList=newArrayList();
- Processprocess;
- process=Runtime.getRuntime().exec(newString[]{"/bin/sh","-c",shStr},null,null);
- InputStreamReaderir=newInputStreamReader(process
- .getInputStream());
- LineNumberReaderinput=newLineNumberReader(ir);
- Stringline;
- process.waitFor();
- while((line=input.readLine())!=null){
- strList.add(line);
- }
- returnstrList;
- }
/**
* 运行shell脚本
* @param shell 需要运行的shell脚本
*/
public static void execShell(String shell){
try {
Runtime rt = Runtime.getRuntime();
rt.exec(shell);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 运行shell
*
* @param shStr
* 需要执行的shell
* @return
* @throws IOException
*/
public static List runShell(String shStr) throws Exception {
List<String> strList = new ArrayList();
Process process;
process = Runtime.getRuntime().exec(new String[]{"/bin/sh","-c",shStr},null,null);
InputStreamReader ir = new InputStreamReader(process
.getInputStream());
LineNumberReader input = new LineNumberReader(ir);
String line;
process.waitFor();
while ((line = input.readLine()) != null){
strList.add(line);
}
return strList;
}
注:如果sh中含有awk,一定要按new String[]{"/bin/sh","-c",shStr}写,才可以获得流
Java执行Shell脚本
本文介绍了一种使用Java来执行Shell脚本的方法,并提供了两个示例函数:一个用于执行Shell命令而不返回输出;另一个用于执行Shell命令并捕获输出到列表中。文中强调了在包含awk命令时使用特定参数数组的重要性。
9万+

被折叠的 条评论
为什么被折叠?



