首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > C# >

c# winfrom获取 当地 Cookies文件夹下所有存储Cookie的文件

2013-09-05 
c# winfrom获取 本地 Cookies文件夹下所有存储Cookie的文件c# winfrom获取 本地 Cookies文件夹下所有存储C

c# winfrom获取 本地 Cookies文件夹下所有存储Cookie的文件
c# winfrom获取 本地 Cookies文件夹下所有存储Cookie的文件,及里面的txt文本名称,以及文本里面的内容信息
存储 Cookie C#
[解决办法]

using System;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;
using Microsoft.Win32;
public class Class1
{
 static void Main(string[] args)
 {
  System.Console.WriteLine(GetCookiesFromFiles("et8")); //支持 WinXP SP2
  System.Console.WriteLine(GetCookie("http://bbs.et8.net"));
 }

 [System.Runtime.InteropServices.DllImport("wininet.dll", CharSet=System.Runtime.InteropServices.CharSet.Auto, SetLastError=true)]
 public static extern bool InternetGetCookie(string lpszUrlName,string lpszCookieName,StringBuilder lpszCookieData,ref int lpdwSize);

 [System.Runtime.InteropServices.DllImport("kernel32.dll")]
 internal static extern Int32 GetLastError();

 public static string GetCookie(string url) //Win32 API
 {
  int size = 1000;
  StringBuilder sb = new StringBuilder(size);

  if (!InternetGetCookie(url,"", sb,ref size))
  {
   Console.WriteLine("Error code:{0}", GetLastError());
  }
  return sb.ToString();
 }

 public static string GetCookiesFromFiles(string MasterDomain) //Cookies File
 {
  string S = null;
  ReGIStryKey key = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders", false);
  if (key != null)
  {
   string val = (string) key.GetValue("Cookies");
   if (val!= null)
   {
    string[] F = Directory.GetFiles(val);
    string s = null;
    int i;


    Regex r = new Regex(@".*@" + MasterDomain + @"*\[\d+\].txt");
    for (i = 0; i < F.Length; i++)
    {
     if (r.IsMatch(F[i]))
     {
      s = F[i];
     }
    }
    if (s != null) //s 就是最新文件
    {
     StreamReader sr = new StreamReader(s);
     s = null;
     i = 1;
     while ((s = sr.ReadLine())!= null)
     {
      if (s == "*" 
[解决办法]
 s == "\n")
      {
       i = 0;
      }
      //每节只读两行
      if (i == 1)
      {
       S += s;
      }
      else if (i == 2)
      {
       S += "=" + s + "; ";
      }
      i++;
     }
    }
   }
  }
  return S;
 }
}


[解决办法]
使用InternetGetCookie
[解决办法]
引用:
Quote: 引用:

using System;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;
using Microsoft.Win32;
public class Class1
{
 static void Main(string[] args)
 {
  System.Console.WriteLine(GetCookiesFromFiles("et8")); //支持 WinXP SP2
  System.Console.WriteLine(GetCookie("http://bbs.et8.net"));
 }

 [System.Runtime.InteropServices.DllImport("wininet.dll", CharSet=System.Runtime.InteropServices.CharSet.Auto, SetLastError=true)]


 public static extern bool InternetGetCookie(string lpszUrlName,string lpszCookieName,StringBuilder lpszCookieData,ref int lpdwSize);

 [System.Runtime.InteropServices.DllImport("kernel32.dll")]
 internal static extern Int32 GetLastError();

 public static string GetCookie(string url) //Win32 API
 {
  int size = 1000;
  StringBuilder sb = new StringBuilder(size);

  if (!InternetGetCookie(url,"", sb,ref size))
  {
   Console.WriteLine("Error code:{0}", GetLastError());
  }
  return sb.ToString();
 }

 public static string GetCookiesFromFiles(string MasterDomain) //Cookies File
 {
  string S = null;
  ReGIStryKey key = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders", false);
  if (key != null)
  {
   string val = (string) key.GetValue("Cookies");
   if (val!= null)
   {
    string[] F = Directory.GetFiles(val);
    string s = null;
    int i;
    Regex r = new Regex(@".*@" + MasterDomain + @"*\[\d+\].txt");
    for (i = 0; i < F.Length; i++)
    {
     if (r.IsMatch(F[i]))
     {
      s = F[i];
     }
    }
    if (s != null) //s 就是最新文件
    {
     StreamReader sr = new StreamReader(s);
     s = null;
     i = 1;
     while ((s = sr.ReadLine())!= null)
     {
      if (s == "*" 
[解决办法]
 s == "\n")
      {
       i = 0;
      }
      //每节只读两行
      if (i == 1)
      {


       S += s;
      }
      else if (i == 2)
      {
       S += "=" + s + "; ";
      }
      i++;
     }
    }
   }
  }
  return S;
 }
}


网上这堆代码一大堆。。。。。
这就能实现你要的功能。

热点排行