工具类
azbh111
这个作者很懒,什么都没留下…
展开
-
不把String直接转成byte数组的前提下,将String包装成InputStream,适合处理大字符串
一般而言,用以下代码将String转成InputStream。 public static InputStream wrapToInputStream(String input, Charset charset) { byte[] bytes = input.getBytes(charset); return new ByteArrayInputStream(bytes); } 但这个方法会生成完整的byte数组。 为了避免转换过程产生完整的byte数原创 2021-12-14 16:23:34 · 313 阅读 · 0 评论 -
一个支持复杂时间解析的工具类
支持时间格式 时间戳: 1637395885585 带毫秒的: 2021-11-20T11:11:25.585 带毫秒的: 2021-11-20 11:11:25.585 不带毫秒的: 2021-11-20 11:11:25 不带秒的: 2021-11-20 11:11 不带分钟的: 2021-11-20 11 只有日期: 2021-11-20 带有完整时区的: 2021-11-20T11:11:25.585+03:00[Asia/Aden] 带有完整时区的: 2021-11-20T08:原创 2021-11-20 16:28:31 · 221 阅读 · 0 评论