摘要: 1 /// 2 /// 压缩字符串 3 /// 4 /// 5 /// 6 public static string Compress(string str) 7 { 8 if (string.IsNullOrEmpty(str)) 9 {10 return "";11 }12 byte[] bytes = Encoding.UTF8.GetBytes(str);... 阅读全文
posted @ 2013-06-26 15:48 qing_sun 阅读(451) 评论(0) 推荐(0) 编辑