摘要: public class Validate { private static Regex RegNumber = new Regex("^[0-9]+$"); private static Regex RegNumberSign = new Regex("^[+-]?[0-9]+$"); priva 阅读全文
posted @ 2017-09-23 18:47 干饭人~ 阅读(6592) 评论(0) 推荐(0) 编辑
摘要: public static class Json { public static object ToJson(this string Json) { return Json == null ? null : JsonConvert.DeserializeObject(Json); } public 阅读全文
posted @ 2017-09-23 18:46 干饭人~ 阅读(234) 评论(0) 推荐(0) 编辑
摘要: NPOI操作 public class NPOIExcel { private string _title; private string _sheetName; private string _filePath; /// <summary> /// 导出到Excel /// </summary> 阅读全文
posted @ 2017-09-23 18:45 干饭人~ 阅读(350) 评论(0) 推荐(0) 编辑
摘要: Excel帮助类操作 public class ExcelHelper { /// <summary> /// 将xls导入List /// </summary> /// <typeparam name="T"></typeparam> /// <param name="stream"></para 阅读全文
posted @ 2017-09-23 18:44 干饭人~ 阅读(277) 评论(0) 推荐(0) 编辑
摘要: AOP工具类 public class AroundAdvice : IMethodInterceptor { bool logurl = true; public AroundAdvice() { Task.Run(() => { logurl = WebUtils.UrlValidateChec 阅读全文
posted @ 2017-09-23 18:43 干饭人~ 阅读(123) 评论(0) 推荐(0) 编辑
摘要: MongoDB针对实时位置 db.CallRecordInfo.find().count()db.SendInfo.find().count()db.RiderReaTimePositon.find().count()db.DistributeOrderRecord.find().count() / 阅读全文
posted @ 2017-09-23 18:24 干饭人~ 阅读(121) 评论(0) 推荐(0) 编辑
摘要: MongoDB字段问题 增删查改操作 删除一列操作db.RiderReaTimePositon.update({},{$unset:{'CreateTime':''}},false,true)db.RiderReaTimePositon.update({},{$unset:{'删除字段':''}}, 阅读全文
posted @ 2017-09-23 18:23 干饭人~ 阅读(102) 评论(0) 推荐(0) 编辑
摘要: MongoDB配置 本地启动 c:\MongoDB\bin>mongod.exe --dbpath "C:\\MongoDB\data\db" --logpath "c:\\MongoDB\Data\log\Mongodb.log" C:\Users\jiangchunming>cd C:\Mong 阅读全文
posted @ 2017-09-23 18:21 干饭人~ 阅读(158) 评论(0) 推荐(0) 编辑
摘要: MongoDB查询笔记 MongoDB配置说明 在C盘根目录新建一个MongoDB文件夹 >在MongoDB下面新建两个文件夹 Data文件夹 bin文件夹【直接拷贝】 data-文件夹下 新建两个文件夹db文件夹和log文件夹 c:\MongoDB\bin>mongod.exe --dbpath 阅读全文
posted @ 2017-09-23 18:17 干饭人~ 阅读(101) 评论(0) 推荐(0) 编辑
摘要: Maven搭建SpringMVC 点击Enable Auto Import 下面配置文件 配置两个文件 web.app-->Web-INF--web.xml 阅读全文
posted @ 2017-09-23 17:22 干饭人~ 阅读(335) 评论(0) 推荐(0) 编辑
摘要: 安装前必备软件: 1、jdk1.8.0_144安装包 2、IntelliJ IDEA 2016.1.1(64) 3、Tomcat安装包 4、Mysql、MySQL-JDBC驱动安装包 5、JetbrainsCrack-2.5.6.jar 破解IJ包 第一步安装配置jdk http://www.ora 阅读全文
posted @ 2017-09-23 14:52 干饭人~ 阅读(2178) 评论(0) 推荐(0) 编辑