ApacheCommonsとGsonが必要なところがあります。
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 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 | public class StringUtil { /** * パラメータを3桁カンマ区切り数字として返す。 * @param number 処理対象文字列 * @return フォーマット後文字列 */ public static String formatComma(String number) { if (!NumberUtils.isCreatable(number)) { return number; } NumberFormat nfNum = NumberFormat.getNumberInstance(); return nfNum.format(Double.parseDouble(number)); } /** * パラメータの文字列を、パラメータの最大文字数で切って返す。 * * nullの場合ブランクを返す。 * 文字数以内の場合文字列をそのまま返す。 * 指定文字数を超える場合は文字数で切った文字列を返す。 * * @param target 処理対象文字列 * @param length 文字数 * @return 処理後文字列 */ public static String split(String target, int length) { String res = null ; if (StringUtils.isEmpty(target)) { res = "" ; } else if (target.length() > length) { res = target.substring( 0 , length); } else { res = target; } return res; } /** * 引数の文字列をSHA-256で暗号化して、16進数エンコードする。 * ※base64でもエンコード出来るが、その場合、文字数が64文字以下になる。 * @param pass * @return */ public static String encode(String pass) { MessageDigest md = null ; try { md = MessageDigest.getInstance( "SHA-256" ); } catch (NoSuchAlgorithmException e) { // 発生しない e.printStackTrace(); } md.update(pass.getBytes()); byte [] digest = md.digest(); // 16 進数文字列として出力 StringBuilder sb = new StringBuilder(); for ( byte b : digest) { String hex = String.format( "%02x" , b); // 16 進数 2 桁として表示 (1byte は 00 ~ ff) sb.append(hex); } String result = sb.toString(); if (result.length() > 64 ) { result = result.substring( 0 , 64 ); } return result; } /** * ランダムな32文字の文字列を生成する。 * CSRF攻撃対策用のトークンとして使用する。 * @return */ public static String getRandomToken() { SecureRandom random = new SecureRandom(); byte bytes[] = new byte [ 32 ]; random.nextBytes(bytes); // 16 進数文字列として出力 StringBuilder sb = new StringBuilder(); for ( byte b : bytes) { String hex = String.format( "%02x" , b); // 16 進数 2 桁として表示 (1byte は 00 ~ ff) sb.append(hex); } String result = sb.toString(); if (result.length() > 32 ) { result = result.substring( 0 , 32 ); } return result; } /** * ランダムな文字列を生成する。 * 文字列に記号を含めるため、base64でエンコードする。 * パスワードを生成するために使用する。 * @param num 文字数 * @return 生成したパスワード */ public static String getRandomPass( int num) { SecureRandom random = new SecureRandom(); byte bytes[] = new byte [ 32 ]; random.nextBytes(bytes); String encoded = Base64.getEncoder().encodeToString(bytes); String result = "" ; if (num <= 32 ) { result = encoded.substring( 0 , num); } else { result = encoded.substring( 0 , 32 ); } return result; } /** * 数値を指定の桁で0埋めする * @param num 処理対象数値 * @param digit 桁数 * @return 0埋め後文字列 */ public static String padZero( int num, int digit) { return String.format( "%0" + digit + "d" , num); } /** * 指定の桁までスペース埋めする * @param str 処理対象文字列 * @param digit 桁数 * @return スペース埋め後文字列 */ public static String padSpace(String str, int digit) { return String.format( "%" + digit + "s" , str); } /** * 数字の頭の0を除去する * @param str 処理対象文字列 * @return 0除去後文字列 */ public static String ltrimZero(String str) { return str.replaceFirst( "^0+" , "" ); } /** * 文字列の頭のスペースを除去する * @param str 処理対象文字列 * @return スペース除去後文字列 */ public static String ltrim(String str) { return str.replaceFirst( "^ +" , "" ); } /** * 文字列の後ろのスペースを除去する * @param str 処理対象文字列 * @return スペース除去後文字列 */ public static String rtrim(String str) { return str.replaceFirst( " +$" , "" ); } /** * JSON文字列からMapを生成 * @param json JSON文字列 * @return Map */ public static Map<String, String> createMapFromJson(String json) { Gson gson = new Gson(); Type listType = new TypeToken<HashMap<String, String>>() { }. getType(); HashMap<String, String> map = gson.fromJson(json, listType); return map; } /** * MapからJSON文字列を生成 * @param map Map * @return JSON文字列 */ public static String createJsonFromMap(Map<String, String> map) { Gson gson = new Gson(); return gson.toJson(map); } /** * パラメータ1がnullの場合はパラメータ2を返す(SQLのNVLと同じ) * @param val1 検査対象文字列 * @param val2 パラメータ1がnullの時に返す文字列 * @return 判定後パラメータ1OR2 */ public static String nvl(String val1, String val2) { if (val1 == null ) { return val2; } else { return val1; } } } |
0 件のコメント:
コメントを投稿