上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 32 下一页
摘要: JdbcTemplate简介 Spring对数据库的操作在jdbc上面做了深层次的封装,使用spring的注入功能,可以把DataSource注册到JdbcTemplate之中。 JdbcTemplate位于spring-jdbc-4.3.0.RELASE.jar中。其全限定命名为org.sprin 阅读全文
posted @ 2020-11-05 11:20 爱跳舞的程序员 阅读(133) 评论(0) 推荐(0) 编辑
摘要: import java.text.SimpleDateFormat; import java.util.Date; /** * @Author crd * @Date 2020-11-4 下午5:52:35 * @Version 1.0 业务说明:主要用于oracle拼接sql,handleNull 阅读全文
posted @ 2020-11-04 17:59 爱跳舞的程序员 阅读(341) 评论(0) 推荐(0) 编辑
摘要: 将GBK编码的文件转为UTF-8编码的文件 配合使用:下载的压缩包解压为文件然后解码 /** * 把GBK文件转为UTF-8 * 两个参数值可以为同一个路径 * @param srcFileName 源文件 * @param destFileName 目标文件 * @throws IOExcepti 阅读全文
posted @ 2020-10-29 15:23 爱跳舞的程序员 阅读(111) 评论(0) 推荐(0) 编辑
摘要: package com.***.tools; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import j 阅读全文
posted @ 2020-10-29 15:19 爱跳舞的程序员 阅读(172) 评论(0) 推荐(0) 编辑
摘要: /** * 下载url的文件到指定文件路径里面,如果文件父文件夹不存在则自动创建 * url 下载的http地址 * path 文件存储地址 * return 如果文件大小大于2k则返回true */ public static boolean downloadCreateDir(String ur 阅读全文
posted @ 2020-10-29 15:16 爱跳舞的程序员 阅读(128) 评论(0) 推荐(0) 编辑
摘要: package com.xxx.util; import java.io.Serializable; import java.math.BigDecimal; import java.math.RoundingMode; /** * @ClassName: DoubleTool * @Descrip 阅读全文
posted @ 2020-10-29 15:12 爱跳舞的程序员 阅读(123) 评论(0) 推荐(0) 编辑
摘要: package com.xxx.core.util; import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.ArrayList 阅读全文
posted @ 2020-10-29 15:08 爱跳舞的程序员 阅读(88) 评论(0) 推荐(0) 编辑
摘要: package org.smart4j.framework.util; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.ObjectMapper; imp 阅读全文
posted @ 2020-10-29 15:07 爱跳舞的程序员 阅读(289) 评论(0) 推荐(0) 编辑
摘要: public class CodecUtil { private static final Logger LOGGER = LoggerFactory.getLogger(CodecUtil.class); /** * 将URL编码 */ public static String encodeURL 阅读全文
posted @ 2020-10-29 15:05 爱跳舞的程序员 阅读(110) 评论(0) 推荐(0) 编辑
摘要: public class StreamUtil { private static final Logger LOGGER = LoggerFactory.getLogger(StreamUtil.class); /** * 从输入流中获取字符串 * @param is * @return */ pu 阅读全文
posted @ 2020-10-29 15:04 爱跳舞的程序员 阅读(120) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 32 下一页