熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> Java核心技術 >> 正文

JAVA調用exe可執行文件

2022-06-13   來源: Java核心技術 

  public class transferExe {

  public static void main(String[] args) {

  openWinExe();

  openExe();

  }

  //用Java調用windows系統的exe文件比如notepadcalc之類

  public static void openWinExe() {

  Runtime rn = RuntimegetRuntime();

  Process p = null;

  try {

  String command = notepad;

  p = rnexec(command);

  } catch (Exception e) {

  Systemoutprintln(Error win exec!);

  }

  }

  //調用其他的可執行文件例如自己制作的exe或是下載安裝的軟件

  public static void openExe() {

  Runtime rn = RuntimegetRuntime();

  Process p = null;

  try {

  p = rnexec(\D:/QQexe\);

  } catch (Exception e) {

  Systemoutprintln(Error exec!);

  }

  }

  }


From:http://tw.wingwit.com/Article/program/Java/hx/201311/26493.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.