摘要:
```java /** * 文件下载到指定路径 * * @param urlString 链接 * @param savePath 保存路径 * @param filename 文件名 * @throws Exception */ public static void download(String 阅读全文
摘要:
```java private List makeTree(List list, String parentId){ //子类 List children = list.stream().filter(x -> x.getParentId().equals(parentId)).collect(Co 阅读全文