摘要:
public static String GetIP() { String ip = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"]; if (string.IsNullOrEmpty(ip)) { ip = HttpContext.Current.... 阅读全文
摘要:
json格式没有错误,内容没有什么异常 反序列化一直显示第一行有异常符号, 在https://jsonlint.com/上面检测了一下,发现了这个 解决办法: UTF-8格式编码 改成 UTF-8无BOM格式编码 阅读全文
摘要:
https://jsonlint.com/ 阅读全文
摘要:
var newStr = System.Text.RegularExpressions.Regex.Unescape(str); 阅读全文
摘要:
using Ionic.Zip; public class ZipHelper { public static void ZipSingleFile(string zipPath) { try { using (ZipFile zip = new ZipFile()) ... 阅读全文
摘要:
using System.Diagnostics; public static void carveVideo() { var inputpath = @"d:\1.mp4"; var outPath = @"d:\1_carve.mp4"; var startTime = "00:00:0... 阅读全文
摘要:
class Program { static void Main(string[] args) { getsqliteData(); } public static void getsqliteData() { SQLiteConnection cnn = ne... 阅读全文
摘要:
异常情况:抛出异常:文件包含损坏的数据 解决办法:把doc文件转化为docx文件,可搜索在线转化网站。之后就可以使用docx文件。 阅读全文