第一种方式:sheets("工作表名字").name ="你想要的名字"第二种方式:sheet1.name = "你想要的名字"Sub test()Sheets("Sheet1").Name = "我的工作表"Sheet1.Name = "我想要的工作表"End Sub
package com.laizhenghua.example.configuration; import java.util.List; /** * @author laizhenghua * @description: excel配置 * @date: 2022/4/25 22:05 */ public class ExcelConfig { private String filePath; private String name; // configName private String dbName; private String packagePath; /...