03 2022 档案
摘要:/** * 示例- 线程stop强制性中止,破坏线程安全的示例 */public class Demo3 { public static void main(String[] args) throws InterruptedException { StopThread thread = new St
阅读全文
摘要:public static <T> List<List<T>> split(List<T> srcList, int groupSize) { int mod = srcList.size() % groupSize; int pou = srcList.size() / groupSize; in
阅读全文
摘要:public abstract class BaseImportExcelBase { /** * 解析Excel文件返回List数据集合 * * @param file * @return */ public List<List<Object>> importExcel(MultipartFile
阅读全文
摘要:public class OrderProductImport extends BaseImportExcelBase { @Override protected void checkColumn(List<Object> columnTabNames) { boolean model = colu
阅读全文