上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 29 下一页
摘要: public static String GetIP() { String ip = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"]; if (string.IsNullOrEmpty(ip)) { ip = HttpContext.Current.... 阅读全文
posted @ 2018-10-23 10:24 向萧 阅读(131) 评论(0) 推荐(0) 编辑
摘要: json格式没有错误,内容没有什么异常 反序列化一直显示第一行有异常符号, 在https://jsonlint.com/上面检测了一下,发现了这个 解决办法: UTF-8格式编码 改成 UTF-8无BOM格式编码 阅读全文
posted @ 2018-10-12 12:05 向萧 阅读(591) 评论(0) 推荐(0) 编辑
摘要: https://jsonlint.com/ 阅读全文
posted @ 2018-10-11 18:19 向萧 阅读(400) 评论(0) 推荐(0) 编辑
摘要: var newStr = System.Text.RegularExpressions.Regex.Unescape(str); 阅读全文
posted @ 2018-09-20 12:21 向萧 阅读(194) 评论(0) 推荐(0) 编辑
摘要: using Ionic.Zip; public class ZipHelper { public static void ZipSingleFile(string zipPath) { try { using (ZipFile zip = new ZipFile()) ... 阅读全文
posted @ 2018-08-30 12:28 向萧 阅读(340) 评论(0) 推荐(0) 编辑
摘要: 未完待续 阅读全文
posted @ 2018-07-02 12:14 向萧 阅读(100) 评论(0) 推荐(0) 编辑
摘要: using System.Diagnostics; public static void carveVideo() { var inputpath = @"d:\1.mp4"; var outPath = @"d:\1_carve.mp4"; var startTime = "00:00:0... 阅读全文
posted @ 2018-05-31 11:42 向萧 阅读(797) 评论(0) 推荐(0) 编辑
摘要: class Program { static void Main(string[] args) { getsqliteData(); } public static void getsqliteData() { SQLiteConnection cnn = ne... 阅读全文
posted @ 2018-05-24 10:22 向萧 阅读(4256) 评论(0) 推荐(0) 编辑
摘要: 未完待续... 阅读全文
posted @ 2018-04-20 11:54 向萧 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 异常情况:抛出异常:文件包含损坏的数据 解决办法:把doc文件转化为docx文件,可搜索在线转化网站。之后就可以使用docx文件。 阅读全文
posted @ 2018-03-30 11:29 向萧 阅读(1937) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 29 下一页