zoukankan      html  css  js  c++  java
  • 获取所有IE当前浏览的Url

    using  System;
    using  System.Windows.Forms;
    using  SHDocVw;
    namespace  WindowsApplication35
    {
        
    public   partial   class  Form1 : Form
        
    {
            
    public  Form1()
            
    {
                InitializeComponent();
            }

            
    private   void  Form1_Load( object  sender, EventArgs e)
            
    {
                ShellWindowsClass shellWindows 
    =   new  ShellWindowsClass();
                
    foreach  (InternetExplorer ie  in  shellWindows)
                
    {
                    
    string  filename  =  System.IO.Path.GetFileNameWithoutExtension(ie.FullName).ToLower();

                    
    if  (filename.Equals( " iexplore " ))
                    
    {
                        Console.WriteLine(ie.LocationURL);
                    }

                }

            }


             
        }

    }
     
  • 相关阅读:
    2020年“安洵杯”四川省大学生信息安全技术大赛 Misc WP
    整数划分问题
    二叉树根节点到叶子节点的所有路径和
    java正则表达式
    搜狗笔试
    跟谁学0923笔试
    360 笔试0926
    度小满0920
    TreeMap 常用函数
    达达0920
  • 原文地址:https://www.cnblogs.com/cl1024cl/p/6204975.html
Copyright © 2011-2022 走看看