01 2021 档案
摘要:1、输入cmd,打开cmd命令框。比如说要关闭端口号为8082的程序 2、输入netstat -nao|findstr 8082 查看8082端口,找到了PID为19912的进程ID在监听这个端口。 3、看看19912是什么进程 查看19912进程,这里残留了一个java.exe进程 4、打开任务管
阅读全文
摘要:List<WarehouseStockItemBean> warehouseStockItemBeanLists = new ArrayList<>(); List<WarehouseStockItemBean> warehouseStockItemBeans = new ArrayList<>()
阅读全文
摘要:一般的写法: //不使用stream拷贝list List<WarehouseStockItemBean> dtoList = new ArrayList<>(); for (WarehouseStockItemBean warehouseStockItem : warehouseStockItem
阅读全文