从 Java 将窗口置于前面
有什么方法可以使用Java将窗口置于最前面吗?也许使用一些操作系统库?
Is there any way to bring a window to the front using Java? Maybe using some operating system library?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(3)
比忠2024-10-15 14:21:21
package focus;
import com.sun.jna.Native;
import com.sun.jna.platform.win32.WinDef.HWND;
import com.sun.jna.win32.StdCallLibrary;
public class ForegroundWindow {
private interface User32 extends StdCallLibrary {
final User32 instance = (User32) Native.loadLibrary("user32", User32.class);
boolean SetForegroundWindow(HWND handle);
HWND FindWindowA(String className, String windowName);
HWND GetForegroundWindow();
}
private String getWindowName(String winName) {
String winText = "";
if (winText.contains(winName)) {
return winText;
}
return null;
}
public boolean bringWindowToFront(String className, String winName) {
HWND hWnd = User32.instance.FindWindowA(className, getWindowName(winName));
if (hWnd == null) {
return false;
}
return User32.instance.SetForegroundWindow(hWnd);
}
}
~没有更多了~
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
看起来这是可能的,但是你的解决方案将非常特定于操作系统。
理论上,可以通过按以下顺序调用 win32 API 来完成:
现在的问题是“如何从java调用它们?”。以上所有函数都在
user32.dll
中定义,可以通过 JNA 访问。使用 JNA 对 user32 API 的一些示例引用如下:
使用 google 查找更多信息。
希望这会有所帮助。
It seems it is possible, but then your solution would be very OS specific.
Theoretically it can be done by placing a call to win32 API in the following sequence:
Now the problem comes 'how to call them from java?'. Well all the above functions are defined in
user32.dll
and it can be accessed by JNA.Some sample references to user32 API using JNA are:
Use google to find more.
Hope this will help.