• 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;
            }
  • 相关阅读:
    铁乐学Python_Day35_Socket模块3和hmac模块
    铁乐学Python_Day34_Socket模块2和黏包现象
    铁乐学Python_Day33_网络编程Socket模块1
    铁乐学python_day29_模块与包学习4
    铁乐学python_day28_模块学习3
    铁乐学python27_模块学习2
    铁乐学python_md5校验两个文件的一致性
    铁乐学python26_hashlib+configparser+logging模块
    Flask与Ajax
    Javascript与Ajax
  • 原文地址:https://www.cnblogs.com/yuanxiaoping_21cn_com/p/1546081.html
Copyright © 2020-2023  润新知