扩展:Date.prototype.format = function(format){     var o =  {     "M+" : this.getMonth()+1, //month     "d+" : this.getDate(), //day     "h+" : this.getHours(), //hour     "m+" : this.getMinutes(), //minute     "…
import net.sf.json.JSONObject; import net.sf.json.JsonConfig; import net.sf.json.processors.JsonValueProcessor; public class DateJsonValueProcessor implements JsonValueProcessor { public static final String DEFAULT_DATE_PATTERN = "yyyy-MM-dd HH:mm:ss…
Json 是一个用于 Java 对象 和 Json 文本 相互转换的工具类. 安装 下载源码 git clone https://github.com/njdi/durian.git 编译源码 cd durian/ 切换至最新版本(Tag),如:0.4, git checkout 0.4 编译安装至本地 Maven 仓库: mvn clean package 添加依赖 SpringBoot 应用使用 Config 时,需要在 Maven pom.xml 中添加: <dependency> &l…
用POI读取Excel数据:(版本号:POI3.7) 1.读取Excel private List<String[]> rosolveFile(InputStream is, String suffix, int startRow) throws IOException, FileNotFoundException { Workbook xssfWorkbook = null; if ("xls".equals(suffix)) { xssfWorkbook = new H…
1. poi的“Quick Guide”中提供了 “How to create date cells ”例子来说明如何创建日期单元格,代码如下: HSSFCellStyle cellStyle = wb.createCellStyle(); cellStyle.setDataFormat(HSSFDataFormat.getBuiltinFormat("m/d/yy h:mm")); cell = row.createCell((short)1); cell.setCellValue(…
poi读取excel自定义时间类型时,读取到的是CELL_TYPE_NUMERIC,即数值类型,这个时候如果直接取值的话会发现取到的值和表格中的值不一样,这时应该先判断值是否是时间或者日期类型再进行处理,代码如下:private String parseExcel(Cell cell) { String result = new String(); switch (cell.getCellType()) { case HSSFCell.CELL_TYPE_NUMERIC:// 数字类型 if (…
本文简单介绍在使用cronolog对tomcat的日志进行自定义日期格式的切割,方便日志的整理和遇到问题日志的排查! 安装cronolog 安装cronolog的方法网上有很多,这里也简单的介绍一下. 1.下载安装包 cronolog-1.6.2.tar.gz 2.安装cronolog tar -zxvf cronolog-1.6.2.tar.gz cd cronolog-1.6.2 ./configre # --prefix=/opt/cronolog ,可以指定安装目录,默认在 /usr/l…
(一)输出json数据 springmvc中使用jackson-mapper-asl即可进行json输出,在配置上有几点: 1.使用mvc:annotation-driven 2.在依赖管理中添加jackson-mapper-asl 1 <dependency> 2 <groupId>org.codehaus.jackson</groupId> 3 <artifactId>jackson-mapper-asl</artifactId> 4 <…
基本上所有的人都在DateTime类型的字段,被序列化成json的时候,遇到过可恨的Date(1294499956278+0800):但是又苦于不能全局格式化设置,比较难受.以往的方式,要么使用全局的Newtonsoft的配置,要么自己重写ActionResult,总之都比较麻烦.在Core提供了更为简单更为明了的办法:不多说,直接上代码! //代码位置:Startup.cs public void ConfigureServices(IServiceCollection services) {…
//代码位置:Startup.cs public void ConfigureServices(IServiceCollection services) { services.AddMvc() .AddJsonOptions ( json => { //统一设置JsonResult中的日期格式 json.SerializerSettings.DateFormatString = "yyyy-MM-dd HH:mm:ss"; } ); } 基本上所有的人都在DateTime类型的字…