从 Java 将窗口置于前面
有什么方法可以使用Java将窗口置于最前面吗?也许使用一些操作系统库?
Is there any way to bring a window to the front using Java? Maybe using some operating system library?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看起来这是可能的,但是你的解决方案将非常特定于操作系统。
理论上,可以通过按以下顺序调用 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.
SWT 非常适合 Win32 调用。
导入 org.eclipse.swt.internal.win32.OS;
@SuppressWarnings("限制")
int hwnd = OS.FindWindowW(null, "Titlein".toCharArray());
SWT is nice for Win32 calls.
import org.eclipse.swt.internal.win32.OS;
@SuppressWarnings("restriction")
int hwnd = OS.FindWindowW(null, "Titlein".toCharArray());