zoukankan      html  css  js  c++  java
  • 用API获得Internet Explorer_Server类的HTML

      

      首先要找到含有Internet Explorer_Server类句柄,

      HTMLDocumentClass  result = (HTMLDocumentClass)documentFromDOM(hWnd.ToInt32());

      result.activeElement.innerHTML就得到所有HTML

      

    private static IHTMLDocument2 documentFromDOM(int hWnd)
            {
                 IHTMLDocument2 document=null;

                int lRes=0;
                int lngMsg = NativeMethods.RegisterWindowMessage("WM_HTML_GETOBJECT");
                Guid IID_IHTMLDocument = new Guid("626FC520-A41E-11CF-A731-00A0C9082637");
                if (lngMsg != 0)
                {
                    NativeMethods.SendMessageTimeout(hWnd, lngMsg, 0, 0, NativeMethods.SMTO_ABORTIFHUNG, 1000, ref lRes);
                    if (!(bool)(lRes == 0))
                    {
                        int hr = NativeMethods.ObjectFromLresult(lRes, ref IID_IHTMLDocument, 0, ref document);
                        if ((bool)(document == null))
                        {
                            MessageBox.Show("No IHTMLDocument Found!", "Warning");
                        }
                    }
                }


                return document;
            }
  • 相关阅读:
    Spring中获取数据库表主键序列
    java学习:ArrayList的实现及原理
    MyBatis SQL动态装配
    Unsupported major.minor version 51.0解决方法
    spring自动装配
    c# 窗口关闭方法
    C# 自定义集合类
    C#接口的实现和继承实践
    C# 开发COM组件供c++使用
    C# 创建和引入动态链接库dll文件
  • 原文地址:https://www.cnblogs.com/hubj/p/1735947.html
Copyright © 2011-2022 走看看