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;
            }
  • 相关阅读:
    Frameset 框架
    FHS 文件层次标准
    history 命令
    QT基础走起
    Android中导入jar包v4的错误
    Android工具Eclipse点击卡死或者无响应情况
    让程序飞起来
    Android中报错
    【2019.9.23】NOIP2017 practice exam
    【技巧】时间复杂度
  • 原文地址:https://www.cnblogs.com/yuanxiaoping_21cn_com/p/1546081.html
Copyright © 2011-2022 走看看