zoukankan      html  css  js  c++  java
  • Exchange2007获取OWA邮箱容量的代码

    //一下方法获取到了Response对象后获取他的html内容 就是:<div id=mbUsg>15224</div><div id=dspMbUsg>14.87 KB</div>
            private string GetMailboxUsageString() {
                string url = Config.ExchangeServerPath.Replace("/exchange/", "/owa/") + "ev.owa?oeh=1&ns=Tree&ev=GetMailboxUsage";
                WebResponse ret = HttpCallGetMailboxUsage(url);
                Stream stream = ret.GetResponseStream();
                StreamReader sr = new StreamReader(stream, Encoding.GetEncoding("UTF-8"));
                string htmlstr = sr.ReadToEnd();
                return htmlstr;
            }

            /// <summary>
            /// 获取用户已经使用的容量
            /// </summary>
            /// <returns>返回已使用容量的byte数 /1024 单位为kb  再/1024 单位为 MB</returns>
            public int GetMailboxUsage() {
                string usageString = GetMailboxUsageString();
                Match mc = Regex.Match(usageString, @"^<div id=mbUsg>([\d]+)</div><div id=dspMbUsg>([\d|\w|\W]+)</div>$");
                return Convert.ToInt32(mc.Groups[1].Value);
            }

            /// <summary>
            /// 获取用户已经使用的容量
            /// </summary>
            /// <returns>返回已使用容量的原始文本</returns>
            public string GetMailboxUsageSourceString() {
                string usageString = GetMailboxUsageString();
                Match mc = Regex.Match(usageString, @"^<div id=mbUsg>([\d]+)</div><div id=dspMbUsg>([\d|\w|\W]+)</div>$");
                return mc.Groups[0].Value;
            }

            /// <summary>
            /// 获取用户已经使用的容量
            /// </summary>
            /// <returns>返回已使用容量的显示文本</returns>
            public string GetMailboxUsageDisplayString() {
                string usageString = GetMailboxUsageString();
                Match mc = Regex.Match(usageString, @"^<div id=mbUsg>([\d]+)</div><div id=dspMbUsg>([\d|\w|\W]+)</div>$");
                return mc.Groups[2].Value;
            }
  • 相关阅读:
    10-10-12分页机制(xp)
    段间跳转之任务门
    段间跳转之TSS段
    mysql索引
    cat /proc/meminfo
    This system is not registered to Red Hat Subscription Management报错
    CentOS 6.5安装zabbix
    KVM(系统虚拟化模块)安装
    Linux时区更改
    学习ruby/rails, rvm是必不可少的工具之一
  • 原文地址:https://www.cnblogs.com/yuanxiaoping_21cn_com/p/1546081.html
Copyright © 2011-2022 走看看