0
    if (Desktop.isDesktopSupported()) 
    {
        Desktop.getDesktop().browse(URI.create(URL));
    }

我将如何编辑此处打开的窗口的位置和大小?它需要能够进行跨平台。如果没有跨平台的解决方案,那么 Desktop 可以使用的任何解决方案是什么?

(这是一个偏离问题的问题,但我也可以放大网页的一部分吗?)

(也是题外话,但如果有另一种打开窗口的方法,包括把手,怎么能做到这一点?)

4

2 回答 2

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);对 . JNA 库使这样做变得如此简单,这太荒谬了。为了使我的代码正常工作,您还需要知道窗口文本的开头——通常是网页的标题——以便它可以获得指向窗口的指针。

老实说,我不知道是否存在任何跨平台解决方案。我想认为有,但我有点怀疑,因为我相信这总是需要系统调用,但我很想被证明是错误的!

于 2012-07-02T01:05:54.693 回答
2

根据我的经验,这getDesktop().browse(URI.create(URL));在 Mac 上不起作用,所以即使你能找到相当于 Mac 的 @Hovercraft Full of Eels 解决方案,也没关系。

我还没有在 Mac 上使用 Java 7.1 测试过 Desktop,但它不能与以前版本的 Java 一起使用。

如果你真的想要跨平台,我认为你需要使用 JavaFX 中的 WebView - JavaFX 现在可以在 Mac 上使用,它是一个功能齐全的浏览器。有很多关于将 JavaFX 与 Swing 混合的教程,我认为 [JavaFX 示例] 包括 webView。1

于 2012-07-02T04:24:39.920 回答