1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
| package com.lt.yl.mine.utils;
import com.baomidou.mybatisplus.core.toolkit.support.SFunction;
public class R {
public static <T, R> String c(SFunction<T, R> fn) { return LambdaUtils.columnToString(fn); } } ------------------------------------ package com.lt.yl.mine.utils;
import com.baomidou.mybatisplus.core.toolkit.support.SFunction; import com.lt.yl.mine.exception.ProjectException;
import java.io.Serializable; import java.lang.invoke.SerializedLambda; import java.lang.reflect.Method; import java.util.Map; import java.util.concurrent.ConcurrentHashMap;
public class LambdaUtils {
private static Map<Class, SerializedLambda> CLASS_LAMBDA_CACHE = new ConcurrentHashMap<>();
private static String GET_METHOD_PREFIX = "get";
private static String SET_METHOD_PREFIX = "set";
public static <T, R> String columnToString(SFunction<T, R> fn) { SerializedLambda lambda = getSerializedLambda(fn); String methodName = lambda.getImplMethodName(); if (methodName.startsWith(GET_METHOD_PREFIX) || methodName.startsWith(SET_METHOD_PREFIX)) { return ConverterUtils.camelToUnderline(methodName.substring(3)); } else { throw new ProjectException("please income a getter/setter method"); } }
private static SerializedLambda getSerializedLambda(Serializable fn) { SerializedLambda lambda = CLASS_LAMBDA_CACHE.get(fn.getClass()); if(lambda == null) { try { Method method = fn.getClass().getDeclaredMethod("writeReplace"); method.setAccessible(Boolean.TRUE); lambda = (SerializedLambda) method.invoke(fn); CLASS_LAMBDA_CACHE.put(fn.getClass(), lambda); } catch (Exception e) { throw new ProjectException("get {} SerializedLambda error", fn.getClass()); } } return lambda; } } ------------------------------------- package com.lt.yl.mine.utils;
import org.apache.commons.lang3.StringUtils;
import java.text.DecimalFormat; import java.util.*;
public class ConverterUtils {
public static String camelToUnderline(String param){ if (param == null || "".equals(param.trim())) { return ""; } int len = param.length(); StringBuilder sb = new StringBuilder(len); for (int i = 0; i < len; i++) { char c = param.charAt(i); if(i == 0 && Character.isUpperCase(c)){ sb.append(Character.toLowerCase(c)); }else if(Character.isUpperCase(c) && i != 0) { sb.append("_"); sb.append(Character.toLowerCase(c)); } else { sb.append(c); } } return sb.toString(); }
public static String underlineToCamel(String param) { if (param == null || "".equals(param.trim())) { return ""; } int len = param.length(); StringBuilder sb = new StringBuilder(len); for (int i = 0; i < len; i++) { char c = param.charAt(i); if(i == 0){ sb.append(Character.toLowerCase(param.charAt(i))); }else if (c == '_') { if (++i < len) { sb.append(Character.toUpperCase(param.charAt(i))); } } else { sb.append(c); } } return sb.toString(); } public static Map<String ,Object> underlineToCamel(Map<String, Object> map) { if (map == null || map.isEmpty()) { return map; } Map<String ,Object> resultMap = new HashMap<>(); map.forEach((k, v) -> { resultMap.put(underlineToCamel(k), v); }); return resultMap; } public static List<Map<String ,Object>> underlineToCamel(List<Map<String, Object>> mapList) { if (mapList == null || mapList.isEmpty()) { return mapList; } List<Map<String ,Object>> resultMapList = new ArrayList<>(mapList.size()); Map<String, String> mapHandler = new HashMap<>(); Map<String, Object> firstMap = mapList.get(0); Map<String, Object> mappingFirstMap = new HashMap<>(); firstMap.forEach((k, v) -> { String camel = underlineToCamel(k); mappingFirstMap.put(camel, v); mapHandler.put(k, camel); }); resultMapList.add(mappingFirstMap); for (int i = 1; i < mapList.size(); i++) { Map<String ,Object> resultMap = new HashMap<>(); mapList.get(i).forEach((k, v) -> { resultMap.put(mapHandler.get(k), v); }); resultMapList.add(resultMap); } return resultMapList; }
public static String parseDouble2Decimal(Object value){ if(value == null || StringUtils.isBlank(value.toString())){ return "0"; } double a = Double.parseDouble(value.toString()); if (a == 0) { return "0"; } return new DecimalFormat("0.00").format(value); } public static Double parseDouble(String s) { if (StringUtils.isNotBlank(s)) { return Double.parseDouble(s); } return null; } public static String parseString(Object obj) { if (obj != null && StringUtils.isNotBlank(obj.toString())) { return obj.toString(); } return null; } public static String toUpperCaseFirstOne(String s) { if(Character.isUpperCase(s.charAt(0))) return s; else return Character.toUpperCase(s.charAt(0)) + s.substring(1); } public static void main(String[] args) { Map<String ,Object> map = new HashMap<>(); map.put("test_date", 21); map.put("test_string", 21); underlineToCamel(map).keySet().forEach(System.out::println); } }
|