随笔分类 -  C#

摘要:1首先实现下载地址转换为迅雷地址 public string ThunderEncode(string code) { code = "AA" + code + "ZZ"; string encode = ""; byte[] bytes = Encoding.GetEncoding(54936).GetBytes(code); try { encode = Convert.ToBase64String(bytes); } catch { ... 阅读全文
posted @ 2012-06-13 09:33 Johnny Yan 阅读(2287) 评论(0) 推荐(0) 编辑