gpt4 book ai didi

java - 在没有 GUI 的情况下在退出的 Java 程序中设置热键

转载 作者:行者123 更新时间:2023-12-02 06:34:23 25 4
gpt4 key购买 nike

我正在编写一个将连续运行的程序,我想知道是否有一个与 Autoit SetHotKey(Key, Action()) 等效的 Java 程序。我在这里看到了一个与 GUI 界面相关的答案,但我的程序没有 GUI。我只是希望程序在按下某个键(最好是 ESC)时退出。

我希望使用 awt.Robot 的按键事件让程序无限循环运行,我希望能够通过按某个键来退出程序。

最佳答案

没有核心 Java 解决方案,因为 Java 被构建为尽可能与操作系统无关,并且为了实现您的目标,您需要一个可以更接近操作系统集成的程序。我所知道的主要解决方案是通过 JNA、JNI 或(我最喜欢的)AutoIt 将程序集成到操作系统中。只需让我的 Java 程序和 AutoIt 通过标准 IO 和套接字进行通信即可完成类似的操作。

一个简单的例子:

Java 程序,TrialAutoIt3a.java:

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.PrintWriter;
import java.util.Scanner;

public class TrialAutoIt3a {

// ***** of course your path to program will be different
private static final String AUTOIT_PATH = "C:/Users/Pete/Documents/Programming/AutoIt/Experiment/";
private static final String AUTOIT_EXEC = "TestWithJava.exe";
protected static final CharSequence EXIT = "exit";
private static Process proc = null;

public static void main(String[] args) {
Runtime rt = Runtime.getRuntime();
System.out.println("Type \"exit\" to exit program");

try {
proc = rt.exec(AUTOIT_PATH + AUTOIT_EXEC);
} catch (IOException e1) {
e1.printStackTrace();
System.exit(-1);
}
InputStream iStream = proc.getInputStream();
InputStreamReader isr = new InputStreamReader(iStream);
final BufferedReader bufReader = new BufferedReader(isr);

OutputStream oStream = proc.getOutputStream();
final PrintWriter pw = new PrintWriter(oStream, true);

Runnable bufReaderRunnable = new Runnable() {
public void run() {
String output;
try {
while ((output = bufReader.readLine()) != null) {
System.out.println(output);
if (output.toLowerCase().contains(EXIT)) {
proc.destroy();
System.exit(0);
}
}
} catch (IOException e) {
e.printStackTrace();
} finally {
if (bufReader != null) {
try {
bufReader.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
};
new Thread(bufReaderRunnable).start();

Runnable myRun = new Runnable() {
public void run() {
Scanner scan = new Scanner(System.in);
while (scan.hasNextLine()) {
String line = scan.nextLine();
pw.println(line);
}
scan.close();
}
};
new Thread(myRun).start();

}
}

AutoIt 程序,TestWithJava.au3:

Local $line = ""

While (True)

$line = $line & ConsoleRead()

If StringInStr($line, @CR) Or StringInStr($line, @LF) Then
ConsoleWrite($line & "to java" & @CRLF)
$line = ""
EndIf

Sleep(25)

WEnd

在运行该程序之前,AutoIt 程序将被编译为 exe 文件

关于java - 在没有 GUI 的情况下在退出的 Java 程序中设置热键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19802434/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com