instruction
stringlengths
77
90.1k
package cn.chinatowercom.framework.util;import lombok.extern.slf4j.Slf4j;import java.io.File;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.IOException;/** * 文件上传工具类 */@Slf4jpublic class FileUtil { // 文件上传 public static void uploadFile(byte[] file, String filePath, String fileName) { File targetFile = new File(filePath); if(!targetFile.exists()){ targetFile.mkdirs(); } try (FileOutputStream out = new FileOutputStream(filePath + fileName)) { out.write(file); out.flush(); } catch (FileNotFoundException e) { log.error("文件不存在",e); } catch (IOException e) { log.error("IO异常",e); } }}
package cn.chinatowercom.framework.util;/** * JSON 返回结果统一格式 * * @author: Huang Shaobing * @since: 2017年7月13日 上午9:48:45 * @history: */public class JSONResult<T> { /** * 处理结果:0成功,-1失败,默认为0 */ private Integer status; /** * 结果描述 */ private String desc; /** * 结果记录条数,分页使用 */ private Integer total; /** * 结果集 */ private T data; /** * 构造方法默认处理结果成功 */ private JSONResult() { this.status = PortalConst.BusinessCode.SUCCESS; } public Integer getStatus() { return status; } public JSONResult<T> setStatus(Integer status) { this.status = status; return this; } public String getDesc() { return desc; } public JSONResult<T> setDesc(String desc) { this.desc = desc; return this; } public Integer getTotal() { return total; } public JSONResult<T> setTotal(Integer total) { this.total = total; return this; } public T getData() { return data; } public JSONResult<T> setData(T data) { this.data = data; return this; } /** * 初始化方法 * * @return * @create 2017年7月13日 上午10:12:30 Huang Shaobing * @history */ public static <E> JSONResult<E> Builder() { return new JSONResult<E>(); }}
package cn.chinatowercom.framework.util;import lombok.extern.slf4j.Slf4j;import java.lang.reflect.Field;import java.net.InetAddress;import java.net.UnknownHostException;import java.text.DateFormat;import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.Calendar;import java.util.Date;import java.util.List;import java.util.Locale;/** * 系统校验,格式化工具类 */@Slf4jpublic class Lib { /** * 校验字符串是否为Null * * @param str * @return true非Null false为Null */ public static boolean isNull(String str) { if (str == null) { return true; } return false; } /** * 校验对象是否为空 * * @param obj * @return */ public static boolean isEmpty(Object obj) { if (obj == null) { return true; } return false; } /** * 判断字符串是否为空 null or "" * * @param str * @return */ public static boolean isEmpty(String str) { if (str == null || "".equals(str) || str.length() == 0) { return true; } return false; } public static Object notNull(Object obj) { return obj == null ? "" : obj; } public static Object notNull(Object obj, String strNull) { return (obj == null || "".equals(obj.toString().trim())) ? strNull : obj; } public static Object notNum(Object obj) { return obj == null ? "0" : obj; } /** * ★★☆☆☆ 获取当前月份. 格式为"yyyy-MM". * * @return 当前月份 */ public static String currentMonth() { java.util.Date date = new java.util.Date(); SimpleDateFormat curTimeFormat = new SimpleDateFormat("yyyy-MM"); return curTimeFormat.format(date); } /** * ★★★★★ 获取当前日期. 格式为"yyyy-MM-dd". * * @return 当前日期 */ public static String today() { java.util.Date date = new java.util.Date(); SimpleDateFormat curTimeFormat = new SimpleDateFormat("yyyy-MM-dd"); return curTimeFormat.format(date); } /** * ★★★★★ 获取当前年份. 格式为"yyyy". * * @return 当前日期 */ public static String year() { java.util.Date date = new java.util.Date(); SimpleDateFormat curTimeFormat = new SimpleDateFormat("yyyy"); return curTimeFormat.format(date); } /** * ★★★★★ 获取当前时间. 格式为"yyyy-MM-dd hh:mm:ss". * * @return 当前时间 */ public static String now() { java.util.Date date = new java.util.Date(); SimpleDateFormat curTimeFormat = new SimpleDateFormat(FORMAT); return curTimeFormat.format(date); } /** * ★★★★★ 获取当前时间 * * @return 当前时间 */ public static String nowByFormat(String format) { java.util.Date date = new java.util.Date(); SimpleDateFormat curTimeFormat = new SimpleDateFormat(format); return curTimeFormat.format(date); } /** * ★★★★★ 获取上个月 * * @return 获取上个月 */ public static String getLastMontByFormat(String format) { Calendar c = Calendar.getInstance(); c.add(Calendar.MONTH, -1); SimpleDateFormat curTimeFormat = new SimpleDateFormat(format); return curTimeFormat.format(c.getTime()); } /** * ab转换%a%b% * * @param param * @return param */ public static String transLike(String param) { StringBuffer returnStr = new StringBuffer("%"); if (param != null) { int paramLength = param.length(); for (int i = 0; i < paramLength; i++) { returnStr.append(param.substring(i, i + 1)).append("%"); } } return returnStr.toString(); } /** * 如果str为null,返回“”,否则返回str * * @param str * @return */ public static String ifNull(String str) { if (str == null) { return ""; } return str; } /** * 已运行时间格式化 * @param startTime * @return */ public static String runTimeDateFormat(String startTime) { Date now = new Date(); SimpleDateFormat f = new SimpleDateFormat(FORMAT); Date startTimeDate = null; StringBuffer runTimeStrBuf = new StringBuffer(); try { startTimeDate = f.parse(startTime); long diff = now.getTime() - startTimeDate.getTime();//这样得到的差值是微秒级别 long days = diff / (1000 * 60 * 60 * 24); long hours = (diff-days*(1000 * 60 * 60 * 24))/(1000* 60 * 60); long minutes = (diff-days*(1000 * 60 * 60 * 24)-hours*(1000* 60 * 60))/(1000* 60); if(0!=days) { if(days>=30) { long month_y = days%30;// 余 long month_s = days/30;// 商 if(month_y==0) {// 整除 //runTimeStr = month_s+" 月"; runTimeStrBuf.append(month_s).append(" 月 "); }else { //runTimeStr = month_s+" 月 "+ month_y+" 天 "; runTimeStrBuf.append(month_s).append(" 月 ").append(month_y).append(" 天 "); } }else{ //runTimeStr = days+" 天 "; runTimeStrBuf.append(days).append(" 天 "); } } // 小时 if(0!=hours) { runTimeStrBuf.append(hours).append(" 小时 "); } if(0!=hours) { runTimeStrBuf.append(hours).append(" 小时 "); } if(0!=minutes) { runTimeStrBuf.append(minutes).append(" 分 "); } // if(0==days && 0==hours) {// runTimeStr = minutes+" 分";// }else if(0==days && 0!=hours) {// runTimeStr = hours+" 小时 "+minutes+" 分";// }else if(0!=days&&0!=hours) {// runTimeStr =days+" 天 "+ hours+" 小时 "+minutes+" 分";// } } catch (ParseException e) { log.error("时间格式化异常",e); } return runTimeStrBuf.toString(); } private static final String FORMAT = "yyyy-MM-dd'T'HH:mm:ss"; /** * 时区转换类 * @param oldDateStr * @return * @throws Exception */ public static String dealDateFormat(String oldDateStr) { //此格式只有 jdk 1.7才支持 yyyy-MM-dd‘T‘HH:mm:ss.SSSXXX //这个后面的.SSSXXX写了的话这一行就直接抛异常了,所以我去掉了,还有前面的T 一定要用英文的单引号包裹起来 DateFormat df = new SimpleDateFormat(FORMAT); Date date = null; Date date1 = null; DateFormat df2 = new SimpleDateFormat(FORMAT); try { date = df.parse(oldDateStr); SimpleDateFormat df1 = new SimpleDateFormat ("EEE MMM dd HH:mm:ss Z yyyy", Locale.UK); date1 = df1.parse(date.toString()); } catch (ParseException e) { log.error("时间格式化异常",e); } return df2.format(date1); } }
package cn.chinatowercom.framework.util;/** * 后台验证类型 * * @author: 黄少冰 * @since: 2016年11月21日 下午4:40:14 * @history: */public interface Op { /** 新增 **/ interface ADD { } /** 删除 **/ interface DELETE { } /** 更新 **/ interface UPDATE { } /** 查询 **/ interface QUERY { }}
package cn.chinatowercom.framework.util;public interface PortalConst { String ACCESS_TOKEN = "accessToken"; String CURRENT_USER = "CURRENT_USER"; String CUSTOMER_LOGIN_URL = "http://monitor-sys-service/login/userInfo"; String PORTALUSER_LOGIN_URL = ""; // 业务操作结果状态集合 interface BusinessCode { Integer SUCCESS = 0; Integer FAIL = -1; } // 栏目级别 interface ColumnLevel { Integer FirstLevel = 1; Integer SecondLevel = 2; } // 菜单级别 interface MenuLevel { Integer FirstLevel = 1; Integer SecondLevel = 2; } // 系统状态 interface SysStatus { Integer SYSFALSE = 1; Integer SYSTRUE = 2; } // 用户类型 interface UserType { String Admin = "1"; // 管理员用户 String Customer = "2"; // 合作伙伴用户 String PortalUser = "3"; // 前端用户 }}
package cn.chinatowercom.framework.util;import com.sun.org.apache.xpath.internal.operations.Bool;import java.text.DateFormat;import java.text.SimpleDateFormat;import java.util.Date;import java.util.UUID;/** * 工具类 */public class PortalStringUtil { // 随机数 public static String getRandomString() { int machineId = 1; int hashCodeV = UUID.randomUUID().toString().hashCode(); if (hashCodeV < 0) { hashCodeV = -hashCodeV; } return machineId + String.format("%016d", hashCodeV); } // 获取文件扩展名 public static String getFileExt(String fileName) { String ext = fileName.substring(fileName.indexOf('.') + 1); return ext; } // 获取格式化时间 public static String getDateStr(String formator) { Date date = new Date(); DateFormat format = new SimpleDateFormat(formator); return format.format(date); } // 字符串是否为null或空 public static Boolean isNullOrEmpty(String str) { if (null == str || "".equals(str)) { return true; } return false; }}
package cn.chinatowercom.framework.util;public class UUID { public static String generate() { String uuid = java.util.UUID.randomUUID().toString().replaceAll("-", ""); return uuid; }}