0

需要使用 UWAMP 或任何作为后台进程启动 PHP、APACHE、MYSQL 而不显示托盘图标或任何?使用命令行启动 -WindowStyle 隐藏它不起作用。请为此建议我一些东西。

4

1 回答 1

0

使用命令提示符在 windows 中启动应用程序,几乎所有编程语言都可以使用这种递归,我在 java 语言中使用这些命令:

//用于在windows操作系统提示符中使用命令的类

公共类提示{

public static String exec(String cmd) {
    String resposta = "";
    try {
        Scanner S = new Scanner(Runtime.getRuntime().exec(cmd).getInputStream());
        while (S.hasNextLine()) {
            resposta += S.nextLine() + "\n";
        }
    } catch (Exception ex) {
        Alert.error(ex.getMessage());
    }
    return resposta;
}

public static void open(String cmd) {
    try {
        Runtime.getRuntime().exec(cmd);
    } catch (IOException ex) {
        Alert.error(ex.getMessage());
    }

} }

// 另一个类中的方法,用于启动服务等程序

公共静态无效开始(){

    try {

        String file = new File("").getAbsolutePath();

        String startApache = file + "/UwAmp/bin/apache/bin/httpd.exe  -k -start";
        String startMySql = file + "/UwAmp/bin/database/mysql-5.7.11/bin/mysqld.exe";

        System.out.println("beginning Apache Server");
        Prompt.exec(startApache);
        Thread.sleep(500);

       System.out.println("beginning MySQL Database Server");
        Prompt.exec(startMySql);
        Thread.sleep(500);

    } catch (Exception ex) {
        Alert.error(ex.getMessage());
    }
}
于 2018-06-25T22:06:17.767 回答