if (Desktop.isDesktopSupported())
{
Desktop.getDesktop().browse(URI.create(URL));
}
如何编辑此处打开的窗口的位置和大小?它需要可以跨平台做。如果跨平台没有解决方案,那么桌面可以使用的解决方案是什么?
(这是偏离问题,但我是否也可以放大网页的一部分?)
(同样不容置疑,但是如果有另一种打开窗口的方式,包含手柄,怎么可以这样做?)
答案 0 :(得分:2)
这就是我在Windows平台设置中移动和重新调整Windows大小的方法。它只是我的一些User32 JNA Windows库代码的一小部分:
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import javax.swing.*;
import com.sun.jna.Native;
import com.sun.jna.Pointer;
import com.sun.jna.win32.StdCallLibrary;
@SuppressWarnings("serial")
public class TestMoveWindow extends JPanel {
public static final String[] BOUNDS_NAMES = { "x", "y", "w", "h" };
private JTextField windowNameField = new JTextField(15);
private JTextField[] boundsFields = new JTextField[BOUNDS_NAMES.length];
public TestMoveWindow() {
JPanel winNamePanel = new JPanel();
winNamePanel.add(new JLabel("Window Name:"));
winNamePanel.add(windowNameField);
JPanel boundsPanel = new JPanel(new GridLayout(1, 0, 5, 0));
for (int i = 0; i < BOUNDS_NAMES.length; i++) {
JPanel fieldPanel = new JPanel();
fieldPanel.add(new JLabel(BOUNDS_NAMES[i] + ":"));
boundsFields[i] = new JTextField(3);
fieldPanel.add(boundsFields[i]);
boundsPanel.add(fieldPanel);
}
JPanel btnPanel = new JPanel();
Action doItAction = new AbstractAction("Do it!") {
@Override
public void actionPerformed(ActionEvent e) {
String startOfWindowName = windowNameField.getText().trim();
Pointer hWnd = JnaUtil.getWinHwnd(startOfWindowName);
if (hWnd == null || startOfWindowName.isEmpty()) {
String message = String.format(
"Window named \"%s\" was not found", startOfWindowName);
JOptionPane.showMessageDialog(TestMoveWindow.this, message,
"Window Not Found", JOptionPane.ERROR_MESSAGE);
return;
}
int x = 0;
int y = 0;
int w = 0;
int h = 0;
String xStr = boundsFields[0].getText();
String yStr = boundsFields[1].getText();
String wStr = boundsFields[2].getText();
String hStr = boundsFields[3].getText();
try {
x = Integer.parseInt(xStr);
y = Integer.parseInt(yStr);
w = Integer.parseInt(wStr);
h = Integer.parseInt(hStr);
} catch (NumberFormatException e1) {
String message = String
.format(
"Numbers cannot be parsed: \"%s\", \"%s\", \"%s\", \"%s\"",
xStr, yStr, wStr, hStr);
JOptionPane.showMessageDialog(TestMoveWindow.this, message,
"Numbers Not Parseable", JOptionPane.ERROR_MESSAGE);
return;
}
JnaUtil.moveWindow(hWnd, x, y, w, h);
}
};
btnPanel.add(new JButton(doItAction));
windowNameField.addActionListener(doItAction);
for (JTextField boundField : boundsFields) {
boundField.addActionListener(doItAction);
}
setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));
add(winNamePanel);
add(boundsPanel);
add(btnPanel);
}
private static void createAndShowGui() {
JFrame frame = new JFrame("Test Move Window");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().add(new TestMoveWindow());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGui();
}
});
}
}
class JnaUtil {
private static final User32 user32 = User32.INSTANCE;
private static Pointer callBackHwnd;
public static Pointer getWinHwnd(final String startOfWindowName) {
callBackHwnd = null;
user32.EnumWindows(new User32.WNDENUMPROC() {
@Override
public boolean callback(Pointer hWnd, Pointer userData) {
byte[] windowText = new byte[512];
user32.GetWindowTextA(hWnd, windowText, 512);
String wText = Native.toString(windowText).trim();
if (!wText.isEmpty() && wText.startsWith(startOfWindowName)) {
callBackHwnd = hWnd;
return false;
}
return true;
}
}, null);
return callBackHwnd;
}
public static boolean moveWindow(Pointer hWnd, int x, int y, int nWidth,
int nHeight) {
boolean bRepaint = true;
return user32.MoveWindow(hWnd, x, y, nWidth, nHeight, bRepaint);
}
}
interface User32 extends StdCallLibrary {
User32 INSTANCE = (User32) Native.loadLibrary("user32", User32.class);
interface WNDENUMPROC extends StdCallCallback {
boolean callback(Pointer hWnd, Pointer arg);
}
boolean EnumWindows(WNDENUMPROC lpEnumFunc, Pointer userData);
boolean MoveWindow(Pointer hWnd, int x, int y, int nWidth, int nHeight,
boolean bRepaint);
int GetWindowTextA(Pointer hWnd, byte[] lpString, int nMaxCount);
}
这将要求您在类路径上使用JNA库中的jna.jar和platform.jar。而且,这仅适用于Windows平台。代码的第一部分,TestMoveWindow只是一个测试GUI来演示程序是如何工作的,它实际上只是对JnaUtil.moveWindow(hWnd, x, y, w, h);
的调用,但代码的“肉”是我的JnaUtil类和User32界面。 JNA库使得这样变得容易,这很荒谬。为了使我的代码能够工作,你还需要知道窗口文本的开头 - 这通常是网页的标题 - 这样它就可以得到一个指向窗口的指针。
老实说,我不知道是否存在任何跨平台解决方案。我想有,但我有点怀疑,因为我相信这总是需要系统调用,但我很想被证明是错的!
答案 1 :(得分:2)
根据我的经验,getDesktop().browse(URI.create(URL));
在Mac上不起作用,所以即使你能找到相当于Mac的@Hovercraft Full of Eels解决方案,也没关系。
我还没有在Mac上测试使用Java 7.1的桌面,但是它没有使用以前版本的Java。
如果您真的想要跨平台,我认为您需要在JavaFX中使用WebView - JavaFX现在可以在Mac上使用,它是一个功能齐全的浏览器。有很多关于将JavaFX与Swing混合的教程,我认为[JavaFX示例]包含了webView。1