首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

用过DJNativeSwing-SWT进来看看, 帮帮忙.解决办法

2012-04-27 
用过DJNativeSwing-SWT进来看看, 帮帮忙..小弟从网上找了份代码, 功能是利用DJNativeSwing, 在swing中加载

用过DJNativeSwing-SWT进来看看, 帮帮忙..
小弟从网上找了份代码, 功能是利用DJNativeSwing, 在swing中加载了个浏览器.
  源代码:

Java code
package com.jj;import java.awt.BorderLayout;import java.awt.FlowLayout;import java.awt.GridLayout;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import java.awt.event.ItemEvent;import java.awt.event.ItemListener;import java.util.ArrayList;import java.util.List;import javax.swing.BorderFactory;import javax.swing.JButton;import javax.swing.JCheckBox;import javax.swing.JFrame;import javax.swing.JPanel;import javax.swing.SwingUtilities;import javax.swing.UIManager;import javax.swing.UnsupportedLookAndFeelException;import org.eclipse.swt.widgets.MessageBox;//import com.birosoft.liquid.LiquidLookAndFeel;import chrriis.common.UIUtils;import chrriis.dj.nativeswing.swtimpl.NativeInterface;import chrriis.dj.nativeswing.swtimpl.components.JWebBrowser;import chrriis.dj.nativeswing.swtimpl.components.WebBrowserCommandEvent;import chrriis.dj.nativeswing.swtimpl.components.WebBrowserEvent;import chrriis.dj.nativeswing.swtimpl.components.WebBrowserListener;import chrriis.dj.nativeswing.swtimpl.components.WebBrowserNavigationEvent;import chrriis.dj.nativeswing.swtimpl.components.WebBrowserWindowOpeningEvent;import chrriis.dj.nativeswing.swtimpl.components.WebBrowserWindowWillOpenEvent;/** * @author Christopher Deckers */public class WebBrowserExample extends JPanel {    final static JWebBrowser webBrowser = new JWebBrowser();    static String javascript = "alert('alert111');";    public WebBrowserExample(String url) {        super(new BorderLayout());        JPanel webBrowserPanel = new JPanel(new BorderLayout());        webBrowserPanel.setBorder(BorderFactory                .createTitledBorder("Native Web Browser component"));//        webBrowser.navigate(url); ////        webBrowser.setBarsVisible(false);        webBrowserPanel.add(webBrowser, BorderLayout.CENTER);        add(webBrowserPanel, BorderLayout.CENTER);        // Create an additional bar allowing to show/hide the menu bar of the        // web browser.        JPanel buttonPanel = new JPanel(new FlowLayout(FlowLayout.CENTER, 4, 4));        JButton home = new JButton("主页");        JButton forward = new JButton("前进");        JButton back = new JButton("后退");        JButton flush = new JButton("刷新");        JButton stop = new JButton("停止");        webBrowser.addWebBrowserListener(new WebBrowserListener() {            public void windowWillOpen(WebBrowserWindowWillOpenEvent arg0) {                // System.out.println("??????URL:"+arg0.getWebBrowser().getResourceLocation()                // );                // System.out.println("???????URL:"+arg0.getWebBrowser().getStatusText()                // );                webBrowser.navigate(arg0.getWebBrowser().getStatusText());                arg0.consume();            }            public void windowOpening(WebBrowserWindowOpeningEvent arg0) {            }            public void windowClosing(WebBrowserEvent arg0) {            }            public void titleChanged(WebBrowserEvent arg0) {            }            public void statusChanged(WebBrowserEvent arg0) {            }            public void locationChanging(WebBrowserNavigationEvent arg0) {            }            public void locationChanged(WebBrowserNavigationEvent arg0) {            }            public void locationChangeCanceled(WebBrowserNavigationEvent arg0) {            }            public void loadingProgressChanged(WebBrowserEvent arg0) {            }            public void commandReceived(WebBrowserEvent arg0, String arg1,                    String[] arg2) {            }            public void commandReceived(WebBrowserCommandEvent arg0) {                // TODO Auto-generated method stub            }        });        buttonPanel.add(home);        buttonPanel.add(back);        buttonPanel.add(forward);        buttonPanel.add(flush);        buttonPanel.add(stop);        home.addActionListener(new ActionListener() {            public void actionPerformed(ActionEvent e) {                webBrowser.navigate("www.163.com");            }        });        forward.addActionListener(new ActionListener() {            public void actionPerformed(ActionEvent e) {                webBrowser.navigateForward();            }        });        back.addActionListener(new ActionListener() {            public void actionPerformed(ActionEvent e) {                 webBrowser.navigateBack();            }        });        flush.addActionListener(new ActionListener() {            public void actionPerformed(ActionEvent e) {                    webBrowser.reloadPage();            }        });        stop.addActionListener(new ActionListener() {            public void actionPerformed(ActionEvent e) {                         webBrowser.stopLoading();            }        });        add(buttonPanel, BorderLayout.SOUTH);        SwingUtilities.invokeLater(new Runnable() {            public void run() {                webBrowser.executeJavascript(javascript);    //执行JavaScript            }        });        NativeInterface.open();         NativeInterface.runEventPump();    }    /* Standard main method to try that test as a standalone application. */    public static void main(String[] args) {        ReadJS rjs = new ReadJS();//        javascript = rjs.readFileByLines("./javascipt1.js");        System.out.println(javascript);        JFrame frame = new JFrame("DJ Native Swing Test");        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);        WebBrowserExample wbe = new WebBrowserExample("http://www.baidu.com");        frame.add(wbe, BorderLayout.CENTER);        // frame.setUndecorated(true);        // frame.setSize(1024, 768);        frame.setSize(800, 600);        // frame.setLocationByPlatform(true);        frame.setVisible(true);    }} 



我想要的结果是, 让浏览器加载页面后执行JavaScript, 可有个问题, 就是现在swing跳出来后, 页面未加载, JavaScript就执行了, 我试用用线程让JavaScript执行前等待几秒, 可以结果依然是先JavaScript后加载页面.
哪位大虾帮帮忙, 说说这是怎么回事, 最好帮帮改改源代码. 谢谢..

[解决办法]
兄弟,不知道你在哪弄的DJNativeSwing的jar包啊?能不能给小弟用下?我的QQ564693889。。非常感谢。。

热点排行