Java executes the bat batch file and closes the cmd window

Source: Internet
Author: User
Package Com.baobaotao.test;import Java.io.ioexception;public class Cmdmain {public static void main (string[] args) {//Execute Batch file string strcmd = "cmd/c start  e:\\run.bat"; Runtime RT = Runtime.getruntime (); Process PS = null;try {PS = rt.exec (strcmd);} catch (IOException E1) {e1.printstacktrace ();} try {ps.waitfor ();} catch (Interruptedexception e) {//TODO auto-generated catch Blocke.printstacktrace ();} int i = Ps.exitvalue (), if (i = = 0) {System.out.println ("execution done.");} else {System.out.println ("execution failed.");} Ps.destroy ();p s = null;//after the batch finishes executing, depending on the Cmd.exe process name//kill out the cmd window New Cmdmain (). KillProcess (); public void KillProcess () {Runtime RT = Runtime.getruntime ();  Process P = null;try {rt.exec ("cmd.exe/c start WMIC process where name= ' cmd.exe ' call Terminate");} catch (IOException e) {E.printstacktrace ();}}}

Java executes the bat batch file and closes the cmd window

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.