摘要:
java8-stream 使用之前,实体类要重写equals和hashCode才会生效。 public static void main(String[] args) { List<Person> list1 = new ArrayList<>(); List<Person> list2 = new 阅读全文
摘要:
将下面三层结合起来,请放心食用。 一、controller层 @RestController public class EasyExcelController { private Logger logger = LogManager.getLogger(EasyExcelController.cla 阅读全文
摘要:
将下面三层结合起来,请放心食用。 一、controller层 @RestController public class EasyExcelController { private Logger logger = LogManager.getLogger(EasyExcelController.cla 阅读全文
摘要:
public static void main(String[] args) { String filePath = "E:/" + "1.txt"; String content = "这是txt文件"; FileWriter fw = null; try { File file = new Fi 阅读全文
摘要:
public CommonResp download() { FileOutputStream fos = null; BufferedInputStream bis = null; HttpURLConnection httpUrl = null; int size = 0; byte[] buf 阅读全文
摘要:
在看完执行了网上各种文章之后,我发现没有一个适合我的。 最终,终于,在朋友的远程帮助下解决了。 如果你还有这个问题的话,可以试一下这个: 右键项目,打开终端,执行下面这个命令(手动指定一下maven install的编码 idea可能默认用gbk了) mvn clean install -Dfile 阅读全文