高软玩家

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2018年11月7日

摘要: string txt = "{\"ip\": \"127.0.0.1\", \"port\": 80, \"status\": \"NULL\", \"type\": \"ee\", \"arg\": \"admin:123456\"},"; Match m = Regex.Match(txt, @"""(.*?)"":(.*?),"); 阅读全文
posted @ 2018-11-07 15:44 高软玩家 阅读(912) 评论(0) 推荐(0) 编辑

摘要: public void HttpListenerStar() { try { HttpListener httpListener = new HttpListener(); httpListener.AuthenticationSchemes = Auth... 阅读全文
posted @ 2018-11-07 15:40 高软玩家 阅读(1400) 评论(0) 推荐(0) 编辑

摘要: //获取字符串的MD5码 public string CreateMD5Hash(string input) { // Use input string to calculate MD5 hash System.Security.Cryptography.MD5 md5 = System.Security... 阅读全文
posted @ 2018-11-07 15:24 高软玩家 阅读(154) 评论(0) 推荐(0) 编辑

摘要: /// /// 计算文件大小函数(保留两位小数),Size为字节大小 /// /// 初始文件大小 /// public static string GetFileSize(long size) { var num = 1024.00; //byte ... 阅读全文
posted @ 2018-11-07 15:23 高软玩家 阅读(224) 评论(0) 推荐(0) 编辑

摘要: public static string MillisecondsToTime(double se) { string str = ""; TimeSpan ts = TimeSpan.FromMilliseconds(se); if (ts.Days > 0) str +=... 阅读全文
posted @ 2018-11-07 15:23 高软玩家 阅读(379) 评论(0) 推荐(0) 编辑

摘要: #region Http 访问 public string GetHttpUrl(string Url) { try { HttpWebRequest request = (HttpWebRequest)WebRequest.Create(Url); ... 阅读全文
posted @ 2018-11-07 15:21 高软玩家 阅读(217) 评论(0) 推荐(0) 编辑

摘要: static string NetworkName = new PerformanceCounterCategory("Network Interface").GetInstanceNames()[0];//获取网卡名称 PerformanceCounter NetworkR = new PerformanceCounter("Network Interface", "By... 阅读全文
posted @ 2018-11-07 15:20 高软玩家 阅读(545) 评论(1) 推荐(0) 编辑

摘要: /// /// 时间转 时间戳 /// /// /// public string DateToUnix10(DateTime time) { System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalT... 阅读全文
posted @ 2018-11-07 15:20 高软玩家 阅读(257) 评论(0) 推荐(0) 编辑

摘要: 剩下的 一次类推 阅读全文
posted @ 2018-11-07 15:19 高软玩家 阅读(133) 评论(0) 推荐(0) 编辑