-
String装换为Java输入流
InputStream is = new ByteArrayInputStream(text.getBytes("UTF-8"));
-
List转换为Map
private Map<String, User> listToMap(List<User> userList) { return userList .stream() .collect(Collectors.toMap(User::getUserName, x -> x)); } class User { @Getter @Setter String userName; @Getter @Setter String address; }
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。