从 Java 将窗口置于前面

发布于 2024-10-08 14:21:21 字数 42 浏览 3 评论 0原文

有什么方法可以使用Java将窗口置于最前面吗?也许使用一些操作系统库?

Is there any way to bring a window to the front using Java? Maybe using some operating system library?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

紫轩蝶泪 2024-10-15 14:21:21

看起来这是可能的,但是你的解决方案将非常特定于操作系统。

理论上,可以通过按以下顺序调用 win32 API 来完成:

  1. FindWindow 函数
  2. ShowWindow 函数
  3. BringWindowToTop 函数

现在的问题是“如何从java调用它们?”。以上所有函数都在 user32.dll 中定义,可以通过 JNA 访问

使用 JNA 对 user32 API 的一些示例引用如下:

  1. 如何使用 JNI 读取窗口标题或JNA?
  2. 调用User32的FindWindow方法。使用 java 的 dll

使用 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:

  1. FindWindow Function
  2. ShowWindow Function OR,
  3. BringWindowToTop Function

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:

  1. How can I read the window title with JNI or JNA?
  2. call FindWindow method of User32.dll using java

Use google to find more.

Hope this will help.

比忠 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);
	}
}

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);
	}
}

笑梦风尘 2024-10-15 14:21:21

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());

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文