Java Execute bat batch file and close cmd window

Source: Internet
Author: User

Java Execute bat batch file and close cmd window

Import java.io.IOException;


public class Cmdmain {
public static void Main (string[] args) {

Execute batch File
String strcmd= "cmd/c start D:\\antrelease.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 block
E.printstacktrace ();
}
int i = Ps.exitvalue ();
if (i = = 0) {
System.out.println ("execution completed.");
} else {
System.out.println ("Execution failed.");
}
Ps.destroy ();
PS = null;

Batch processing after execution, according to the Cmd.exe process name kill the cmd window (this method is very hard to find, online many introduced are invalid, csdn waste me 3 points to find this method)
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 ();
}
}
}

Related Article

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.