java调用执行cmd指令启动weblogic_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > java调用执行cmd指令启动weblogic

java调用执行cmd指令启动weblogic

 2017/11/28 22:01:49  柳絮飞祭奠  程序员俱乐部  我要评论(0)
  • 摘要:这里的例子是启动weblogicimportjava.io.BufferedReader;importjava.io.IOException;importjava.io.InputStream;importjava.io.InputStreamReader;publicclassTime{publicstaticvoidTest(){//1.excutePath为bat或者cmd所在的路径,例如:StringexcutePath="E
  • 标签:Web Java 执行 启动
这里的例子是启动weblogic
class="java" name="code">import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;

public class Time {
	public static void Test() {
		//1. excutePath 为bat或者cmd所在的路径,例如:
		String excutePath = "E:\\weblogic\\user_projects\\domains\\cluster_domain\\cluster01.cmd";
		Process process;
		try {
			// 执行CMD代码,返回一个Process
			process = Runtime.getRuntime().exec(excutePath);
			InputStream is = process.getInputStream();
			// 得到相应的控制台输出信息
			InputStreamReader bi = new InputStreamReader(is);
			BufferedReader br = new BufferedReader(bi);
			String message;
			message = br.readLine();
			while (message != null && !"".equals(message)) {
				// 将信息输出
				System.out.println(message);
				message = br.readLine();
			}
		} catch (IOException e) {
			e.printStackTrace();
			return;
		}
	}


启动weblogic子节点
/**
	 * 启动weblogic子节点服务的方法
	 * */
	public static void startserver() throws InterruptedException {
		// Runtime.getRuntime()返回当前应用程序的Runtime对象
		Runtime nRuntime = Runtime.getRuntime();
		// Process可以控制该子进程的执行或获取该子进程的信息。
		Process nProcess = null;
		String nStartApp = "E:\\weblogic\\user_projects\\domains\\cluster_domain\\cluster01.cmd";
		String nLine = null;
		try {
			nProcess = nRuntime.exec(nStartApp);
			// 读取正确执行的返回流
			BufferedReader nInfo = new BufferedReader(new InputStreamReader(
					nProcess.getInputStream()));
			nLine = nInfo.readLine();
			while ((nLine = nInfo.readLine()) != null) {
				System.out.println(nLine);
			}
			// 读取错误执行的返回流
			BufferedReader nError = new BufferedReader(new InputStreamReader(
					nProcess.getErrorStream()));
			nLine = nError.readLine();
			while ((nLine = nError.readLine()) != null) {
				System.out.println(nLine);
			}
		} catch (IOException e1) {
			e1.printStackTrace();
		}

	}
  • 大小: 25.2 KB
  • 大小: 43.1 KB
  • 大小: 39.4 KB
  • 大小: 39.6 KB
  • 大小: 39.6 KB
  • 大小: 59.2 KB
  • 大小: 43.5 KB
  • 大小: 71.3 KB
  • 大小: 53.7 KB
  • 大小: 50.5 KB
  • 查看图片附件
上一篇: 微软版AirDrop上手体验:可在PC之间快速分享内容 下一篇: 没有下一篇了!
发表评论
用户名: 匿名