Java_常见使用
Java_常见使用
Java_常见使用
乘法运算
BigDecimal 中 乘法运算multiply
1 2 3 4 5 6 7 8 9 10 11 12 13
| import java.math.BigDecimal;
public class Main {
public static void main(String[] args) { BigDecimal a = new BigDecimal("3"); BigDecimal b = new BigDecimal("3.3");
BigDecimal c = b.multiply(a);
System.out.println(c); } }
|
获取字符串Hash
值
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
| public static String hashKeyForDisk(String key) { String cacheKey; try { final MessageDigest mDigest = MessageDigest.getInstance("MD5"); mDigest.update(key.getBytes()); cacheKey = bytesToHexString(mDigest.digest()); } catch (NoSuchAlgorithmException e) { cacheKey = String.valueOf(key.hashCode()); } return cacheKey; }
private static String bytesToHexString(byte[] bytes) { StringBuilder sb = new StringBuilder(); for (int i = 0; i < bytes.length; i++) { String hex = Integer.toHexString(0xFF & bytes[i]); if (hex.length() == 1) { sb.append('0'); } sb.append(hex); } return sb.toString(); }
|
当前时间
1 2 3 4
| Date nowTime = new Date(System.currentTimeMillis()); SimpleDateFormat sdFormatter = new SimpleDateFormat("yyyy-MM-dd"); System.out.println(sdFormatter.format(nowTime));
|
唯一识别码
1 2
| String fei = UUID.randomUUID().toString(); System.out.println(fei);
|
随机数
1
| System.out.println(new SplittableRandom(20231203).nextInt(1,20));
|
自定义随机数
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| public static String makeString(String from, int len) { if (len <= 1) { return ""; }else { char[] chars = from.toCharArray(); StringBuilder str = new StringBuilder(); for (int i = 0; i < len; i++) { Random random = new Random(); int j = random.nextInt(chars.length); char c = chars[j]; str.append(c); } return str.toString(); } }
|
非空字符串
1 2 3 4
| public static boolean isEmpty(String str) { return isNull(str) || NULLSTR.equals(str.trim()); }
|
日期格式化
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| public static Date parseDate(String dateString, String format) throws ParseException { SimpleDateFormat sdf = new SimpleDateFormat(format); return sdf.parse(dateString); }
public static String formatDate(Date date, String format) { SimpleDateFormat sdf = new SimpleDateFormat(format); return sdf.format(date); }
Date s = parseDate("2024-01-20", "yyyy-MM-dd"); System.out.println(s);
String date = formatDate(new Date(), "yyyy-MM-dd hh:mm:ss"); System.out.println(date);
|