博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java运行可以执行文件
阅读量:5280 次
发布时间:2019-06-14

本文共 1293 字,大约阅读时间需要 4 分钟。

# package com.yymt.pf.rpc.loadbalance;  #   # import java.io.File;  # import java.io.IOException;  #   # public class ExecFileUtil {  #     public static void main(String[] args) throws IOException {  #         run("cmd /C start startup.bat", null, new File(  #                 "E:\\develop_tools\\apache-tomcat-6.0.26\\bin\\"));  #         System.out.println("Started!");  #     }  #   #     /** #      * @param path #      *            a specified system command #      * @param envp #      *            array of strings, each element of which has environment #      *            variable settings in the format name=value, or null if the #      *            subprocess should inherit the environment of the current #      *            process. #      * @param dir #      *            the working directory of the subprocess, or null if the #      *            subprocess should inherit the working directory of the current #      *            process. #      * @return #      * @throws IOException #      */  #     public static Process run(String cmd, String[] envp, File dir)  #             throws IOException {  #         Runtime rt = Runtime.getRuntime();  #         return rt.exec(cmd, envp, dir);  #     }  #   # }
 

转载于:https://www.cnblogs.com/qq1988627/archive/2011/08/15/6606876.html

你可能感兴趣的文章
Maven实战(一)——坐标规划
查看>>
Find Minimum in Rotated Sorted Array
查看>>
crackme itoa atoi 等函数汇编
查看>>
数据库 proc编程三
查看>>
Anaconda多环境多版本python配置指导
查看>>
测试与封装5.2-5.3
查看>>
WEB应用的组成结构
查看>>
bzoj3504[Cqoi2014]危桥
查看>>
Pomelo.AspNetCore.TimedJob 允许依赖注入
查看>>
记一次Spring的aop代理Mybatis的DAO所遇到的问题
查看>>
20165231 预备作业二:学习基础和C语言基础调查
查看>>
Unable to correct problems, you have held broken package
查看>>
文件操作
查看>>
Java并发编程——线程安全及解决机制简介
查看>>
day06_05 字典
查看>>
对一个同事项目的思考和总结
查看>>
【原】测试Application.Idle
查看>>
51nod 1107(树状数组、逆序数)
查看>>
二叉树的顺序存储结构
查看>>
“文件系统”与“根文件系统”详解
查看>>