39 Upd - Hutool

Added a callback parameter for Server-Sent Events (SSE) streaming returns, allowing for real-time data flow in AI applications.

// Between long days = DateUtil.between(date1, date2, DateUnit.DAY); hutool 39

// Current date Date now = DateUtil.date(); String today = DateUtil.today(); Added a callback parameter for Server-Sent Events (SSE)

Generates a MongoDB-like 24-character unique ID (shorter than UUID). String today = DateUtil.today()

// AES String key = "1234567890123456"; Aes aes = SecureUtil.aes(key.getBytes()); String encrypted = aes.encryptHex("secret"); String decrypted = aes.decryptStr(encrypted);