- 浏览: 1541066 次
- 性别:
- 来自: 北京
文章分类
- 全部博客 (225)
- JAVA (27)
- Spring (49)
- Linux (51)
- JavaScript (8)
- Scrum (23)
- IDE (2)
- JSON (2)
- Solr (0)
- Webharvest (0)
- Hibernate (8)
- 杂谈 (3)
- Windows 7 (4)
- 持续集成 (23)
- tomcat (3)
- Android (1)
- SpringSecurity (11)
- Maven (9)
- jotm (3)
- C3P0 (1)
- Active Directory (2)
- cas (1)
- JQuery (2)
- ajax (1)
- plsql (2)
- nginx (4)
- apache (1)
- thrift (7)
- python (3)
- oracle (4)
- php (2)
- redis (1)
- fedora (1)
- windows7 (0)
- SVN (1)
- NFS (1)
- SAMBA (1)
- Atomikos (1)
- apache-poi (1)
- mysql (2)
- vncserver (1)
- mac (2)
- firefox (1)
- JIRA (1)
- p6spy (1)
- git (1)
- github (1)
- gitlab (1)
- gogs (1)
- Druid (1)
- MyBatis (1)
- docker (8)
- zabbix (1)
最新评论
-
lialatd:
您好,我用您的方法通过java api往jira系统中添加is ...
JIRA REST API ---- JAVA -
sprcen945:
可以了,是因为没加intercept-url 的拦截, 尼玛, ...
SpringSecurity3.X--Cas client 配置 -
sprcen945:
请问为什么我配了security.xml后切入点不起作用(之前 ...
SpringSecurity3.X--Cas client 配置 -
linxingyul:
根据楼主的代码 继承了WebMvcConfigurationS ...
SpringMVC4零配置--Web上下文配置【MvcConfig】 -
java_老头:
MvcConfig.java的FilterType.ANNOT ...
SpringMVC4零配置--Web上下文配置【MvcConfig】
原文之地:http://blog.csdn.net/Nicolas_Yang/archive/2008/12/12/3504480.aspx
【JAVA 中执行Shell】
jShell.java
/*
* jShell.java
* class jShell is used for executing shell command
* USAGE:
* jShell obj=new jShell(shellCommand);
* obj.startErr();
* obj.startOut();
* obj.startIn();
* You can Interupt I/O thread when nessasary:
* obj.interruptErr();
* obj.interruptOut();
* obj.interruptIn();
*
* BY Ahui Wang Nankai U. 2007-05-12
*/
import java.io.*;
public class jShell {
Thread tIn; //handle input of child process
Thread tOut;//handle output of child process
Thread tErr;//handle error output of child process
public jShell(String shellCommand){
Process child=null; //child process
try{
child=Runtime.getRuntime().exec(shellCommand);
}
catch(IOException e){
e.printStackTrace();
}
if(child==null){
return;
}
final InputStream inputStream=child.getInputStream();
final BufferedReader brOut=
new BufferedReader(new InputStreamReader(inputStream));
tOut=new Thread(){ //initialize thread tOut
String line;
int lineNumber=0;
public void run(){
try{
while((line=brOut.readLine())!=null){
System.out.println(lineNumber+". "+line);
lineNumber++;
}
}
catch(IOException e){
e.printStackTrace();
}
}
};
final InputStream errorStream=child.getErrorStream();
final BufferedReader brErr=
new BufferedReader(new InputStreamReader(errorStream));
tErr=new Thread(){ //initialize thread tErr
String line;
int lineNumber=0;
public void run(){
try{
while((line=brErr.readLine())!=null){
System.out.println(lineNumber+". "+line);
lineNumber++;
}
}
catch(IOException e){
e.printStackTrace();
}
}
};
// read buffer of parent process' input stream
final BufferedReader reader =
new BufferedReader(new InputStreamReader(System.in));
final OutputStream outputStream = child.getOutputStream();
tIn=new Thread(){
String line;
public void run() {
try {
while (true) {
outputStream.write( (reader.readLine()+"\n").getBytes());
outputStream.flush();
}
}
catch (IOException e) {
e.printStackTrace();
}
}
};
}
public void startIn(){ //start thread tIn
if(tIn!=null){
tIn.start();
}
}
public void startErr(){ //start thread tErr
if(tErr!=null){
tErr.start();
}
}
public void startOut(){ //start thread tOut
if(tOut!=null){
tOut.start();
}
}
public void interruptIn(){ //interrupt thread tIn
if(tIn!=null){
tIn.interrupt();
}
}
public void interruptErr(){ //interrupt thread tErr
if(tErr!=null){
tErr.interrupt();
}
}
public void interruptOut(){ //interrupt thread tOut
if(tOut!=null){
tOut.interrupt();
}
}
}
CODE: mainC.java
----------------------------------------------------------------------------------
public final class mainC {
public static void main(String[] args) {
jShell shell=new jShell("ls -l");
shell.startErr();
shell.startIn();
shell.startOut();
}
}
RESULT:
---------------------------------------------------------------------------------
0. 总用量 44
1. -rwxrwxrwx 1 root root 219 5月 12 10:41 ex.pl
2. -rwxrwxrwx 1 root root 211 5月 12 10:39 ex.pl~
3. -rwxrwxrwx 1 root root 150 5月 12 10:41 ex.sh
4. -rwxrwxrwx 1 root root 124 5月 12 10:20 ex.sh~
5. -rwxrwxrwx 1 root root 1198 5月 12 10:43 jShell$1.class
6. -rwxrwxrwx 1 root root 1198 5月 12 10:43 jShell$2.class
7. -rwxrwxrwx 1 root root 1222 5月 12 10:43 jShell$3.class
8. -rwxrwxrwx 1 root root 2241 5月 12 10:43 jShell.class
9. -rwxrwxrwx 1 root root 2720 5月 12 10:43 jShell.java
10. -rwxrwxrwx 1 root root 544 5月 12 11:43 mainC.class
11. -rwxrwxrwx 1 root root 170 5月 12 11:43 mainC.java
PS:
Process process=Runtime.getRuntime().exec("");中产生停滞(阻塞,blocking),怎么解决?
---------------------------------------------------------------
这个是因为Runtime.getRuntime().exec()要自己去处理stdout和stderr的。
所以如果你想让程序正常运行的话,请务必将上述用别的线程流取走。
【JAVA中执行bat】
>test.bat
haha
exit 99
>RuntimeTest.java
public class RuntimeTest {
public static void main(String[] args) {
try {
Process process=Runtime.getRuntime().exec("test.bat");
StreamGobbler errorGobbler = new StreamGobbler(process.getErrorStream(), "ERROR");
// kick off stderr
errorGobbler.start();
StreamGobbler outGobbler = new StreamGobbler(process.getInputStream(), "STDOUT");
// kick off stdout
outGobbler.start();
process.waitFor();
System.out.println(process.exitValue());
} catch(Exception e) {}
}
}
>StreamGobbler.java
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.PrintWriter;
public class StreamGobbler extends Thread {
InputStream is;
String type;
OutputStream os;
StreamGobbler(InputStream is, String type) {
this(is, type, null);
}
StreamGobbler(InputStream is, String type, OutputStream redirect) {
this.is = is;
this.type = type;
this.os = redirect;
}
public void run() {
try {
PrintWriter pw = null;
if (os != null)
pw = new PrintWriter(os);
InputStreamReader isr = new InputStreamReader(is);
BufferedReader br = new BufferedReader(isr);
String line=null;
while ( (line = br.readLine()) != null) {
if (pw != null)
pw.println(line);
System.out.println(type + ">" + line);
}
if (pw != null)
pw.flush();
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
}
发表评论
-
JIRA REST API ---- JAVA
2015-09-24 15:51 13416最近在搞自动化监控 ... -
Thrift--JSClient
2013-09-26 14:45 6014thrift提供了基于jquery--ajax的客户端调用 ... -
Thrift--Spring集成ThriftServlet
2013-09-25 11:42 11151Thrift除了可以通过TCP协议访问,还可以通过HTTP ... -
Thrift转SpringHttpInvoker
2013-09-24 13:26 1794关于在spring中集成Thrift请参看:http://h ... -
Thrift--JavaServer&PythonClient遇到的问题
2013-09-23 10:16 1469thrift在java中的应用参考:http://hanqu ... -
Spring集成Thrift--Server AND Client
2013-09-04 20:13 13787Thrift网上有N多教程, ... -
Windows Server 2008 Active Directory 安装及使用笔记
2013-03-22 18:49 26911.安装AD http://www.docin.com/ ... -
C3P0配置实战
2012-09-04 18:34 51929C3P0: 一个开源的JDBC连接池,它实现了数据源和JN ... -
使用Spring3.1 Cache注解+EHCache遇到的问题
2011-10-20 17:48 10404关于Spring3.1 Cache注解的介绍请参看http:/ ... -
JAVA压缩与解压缩--zip
2011-03-03 16:52 3433通过java打zip包或者解压 ... -
java调用Shell脚本
2009-07-10 13:13 2329原文地址:http://hi.baidu.com/qiu115 ... -
JDK5 Annotation(注释)的用法
2009-07-10 13:27 1825原文地址:http://hi.baidu.com/gaoyao ... -
JDK 1.5中的ENUM用法
2009-07-10 13:30 1338原文地址:http://www.cnblogs.com/jac ... -
java反射介绍
2009-07-10 14:31 1134一。课程:检查类 1.获得Class对象 得到 ... -
jdk1.5泛型介绍
2009-07-11 09:42 1135原文地址:http://www.matrix.org.cn/r ... -
中文与acsii码相互转换方法
2009-07-13 17:59 1470在开发时,经常会用到 ... -
巧用系统属性
2009-07-15 11:22 1928我们都曾在项目中使用 ... -
String与InputStream相互转换
2009-07-20 18:48 17571.String to InputStream String ... -
java.util.Date 与java.sql.Date相互转换
2009-07-21 10:57 17331.java.util.Date to java.sql.Da ... -
java验证日期格式
2009-07-24 21:02 1773public static boolean checkDate ...
相关推荐
关于批处理脚本的调用,我们可以创建两个脚本来分别在Windows(.bat)和Unix/Linux(.sh)环境下执行这个Java程序: **replace_str.bat (Windows)** ```batch @echo off java -cp . ReplaceStr ``` 这个批处理脚本...
特色功能: 一键自动实现gbk、utf-8互转,不需要任何设置 也支持指定编码方式后,一键转码 强制模式:不支持转码的字符可跳过(目前处理方式是...Shell脚本 (.sh) 批处理文件 (.bat, .cmd) 标记语言文件 Markdown (.md)
`.bat`通常是Windows系统的批处理文件,`.jar`是Java应用程序,而`.sh`则是Linux或Unix的Shell脚本。 3. 用户友好:可能通过简单的命令行界面或者图形用户界面(GUI)操作,使得非技术背景的用户也能方便使用。 ...
Windows批处理文件(`.bat`)和Linux shell脚本(`.sh`)就是这样的例子。 5. **数据库查询**:在数据库管理中,有时需要重复执行查询,比如当需要对大量数据进行迭代处理时。SQL的`WHILE`循环或存储过程可实现此...
在MySQL数据库管理中,批量执行SQL文件是一种常见且...通过上述方法,你可以根据实际需求和环境灵活地在MySQL中批量执行SQL文件。确保在执行前备份重要数据,并在安全的环境中测试这些操作,以防止任何潜在的数据损失。
在Kettle中,Transformation专注于数据的ETL处理,而Job则更注重工作流程的控制,可以包含Transformation以及其他动作,如邮件发送、SQL执行、Shell脚本等。 Kettle的安装非常简单,只需要Java运行环境支持,解压缩...
5. 启动WebLogic Server:完成安装后,通过`startWebLogic.sh`(Unix/Linux)或`startWebLogic.bat`(Windows)脚本来启动服务。 二、WebLogic配置 1. 域配置:在WebLogic的`config.xml`文件中,你可以修改服务器的...
`run.bat` 是一个批处理文件,适用于 Windows 操作系统,而 `run.sh` 是一个 shell 脚本,用于 Linux 和 macOS 等 Unix-like 系统。这两个脚本会设置适当的命令来启动 JVM 并运行 `jfm.jar`。 Java 文件管理器(JFM...
2. **启动与停止Tomcat**:介绍如何通过bin目录下的`startup.sh`(Linux)或`startup.bat`(Windows)脚本来启动和关闭Tomcat服务器。 3. **配置Tomcat**:讲解`conf`目录下的关键配置文件,如`server.xml`(定义...
在提供的压缩包子文件中,我们看到多个以"Test"和"JUnittest"命名的批处理(.bat)和Shell脚本(.sh)文件。这些文件很可能是用于测试GanttProject API功能的自动化测试脚本。通常,单元测试(Unit Test)是用来验证...