IE浏览器脚本 : WIN32 « SWT-JFace-Eclipse « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » SWT-JFace-Eclipse » WIN32屏幕截图 
IE浏览器脚本
IE浏览器脚本


import org.eclipse.swt.SWT;
import org.eclipse.swt.SWTError;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.ole.win32.OLE;
import org.eclipse.swt.ole.win32.OleAutomation;
import org.eclipse.swt.ole.win32.OleControlSite;
import org.eclipse.swt.ole.win32.OleEvent;
import org.eclipse.swt.ole.win32.OleFrame;
import org.eclipse.swt.ole.win32.OleListener;
import org.eclipse.swt.ole.win32.Variant;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;

/*
 * Running a script within IE.
 
 * For a list of all SWT example snippets see
 * http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/platform-swt-home/dev.html#snippets
 */

public class Snippet187 {

  public static void main(String[] args) {
    final Display display = new Display();
    Shell shell = new Shell(display);
    shell.setLayout(new FillLayout());
    OleControlSite controlSite;
    try {
      OleFrame frame = new OleFrame(shell, SWT.NONE);
      controlSite = new OleControlSite(frame, SWT.NONE, "Shell.Explorer");
      controlSite.doVerb(OLE.OLEIVERB_INPLACEACTIVATE);
    catch (SWTError e) {
      System.out.println("Unable to open activeX control");
      return;
    }

    // IWebBrowser
    final OleAutomation webBrowser = new OleAutomation(controlSite);

    // When the document is loaded, access the document object for the new
    // page
    // and evalute expression using Script.
    int DownloadComplete = 104;
    controlSite.addEventListener(DownloadComplete, new OleListener() {
      public void handleEvent(OleEvent event) {
        int[] htmlDocumentID = webBrowser
            .getIDsOfNames(new String[] { "Document" });
        if (htmlDocumentID == null)
          return;
        Variant pVarResult = webBrowser.getProperty(htmlDocumentID[0]);
        if (pVarResult == null || pVarResult.getType() == 0)
          return;
        // IHTMLDocument2
        OleAutomation htmlDocument = null;
        try {
          htmlDocument = pVarResult.getAutomation();
          pVarResult.dispose();

          int[] scriptID = htmlDocument
              .getIDsOfNames(new String[] { "Script" });
          if (scriptID == null)
            return;
          pVarResult = htmlDocument.getProperty(scriptID[0]);
          if (pVarResult == null || pVarResult.getType() == 0)
            return;
          OleAutomation htmlWindow = null;
          try {
            // IHTMLWindow2
            htmlWindow = pVarResult.getAutomation();
            pVarResult.dispose();
            int[] evaluateID = htmlWindow
                .getIDsOfNames(new String[] { "evaluate" });
            if (evaluateID == null)
              return;
            String expression = "5+Math.sin(9)";
            Variant[] rgvarg = new Variant[] { new Variant(
                expression) };
            pVarResult = htmlWindow.invoke(evaluateID[0], rgvarg,
                null);
            if (pVarResult == null || pVarResult.getType() == 0)
              return;
            System.out.println(expression + " ="
                + pVarResult.getString());
          finally {
            htmlWindow.dispose();
          }
        finally {
          htmlDocument.dispose();
        }
      }
    });

    // Navigate to a web site
    int[] ids = webBrowser
        .getIDsOfNames(new String[] { "Navigate""URL" });
    Variant[] rgvarg = new Variant[] { new Variant(
        "http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet187.html") };
    int[] rgdispidNamedArgs = new int[] { ids[1] };
    webBrowser.invoke(ids[0], rgvarg, rgdispidNamedArgs);

    shell.open();
    while (!shell.isDisposed()) {
      if (!display.readAndDispatch())
        display.sleep();
    }
    // Remember to release OleAutomation Object
    webBrowser.dispose();
    display.dispose();

  }
}


           
       
Related examples in the same category
1. 调用该系统文字编辑器编辑autoexec.bat
2. 放置图标,系统托盘弹出菜单放置图标,系统托盘弹出菜单
3. SWT Ole窗口SWT Ole窗口
4. OLE和ActiveX实例
5. Word中的OLEWord中的OLE
6. 调用一个外部批处理文件调用一个外部批处理文件
7. 查找可编辑BMP程序的图标查找可编辑BMP程序的图标
8. 读和写SAFEARRAY
9. 在Word中嵌入一个applet
10. OLE and ActiveX example: browse the typelibinfo for a program id
11. OLE和ActiveX:获得IE浏览器控制事件OLE和ActiveX:获得IE浏览器控制事件
12. 如何获取关于,偏好和退出菜单
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.