您好我正在制作生成文件的电子表格并将其保存在某个文件夹中,但文件夹会更改每个作业编号。目前我将目标文件夹设置为我的桌面,我手动将文件移动到所需的文件夹。以下是我的代码:
public abstract class Command {
public Command() {
// Do things to initialize Command
}
}
public abstract class ComplexCommand extends Command {
private ArrayList<String> commands;
public ComplexCommand() {
super();
// Do things to initialize ComplexCommand
this.commands = new ArrayList<>();
System.out.println(this.commands);
}
}
public class MyTestCommand extends Command {
public MyTestCommand() {
super();
setUsage("Usage: /test <target>");
setDescription("This is a test command");
}
}
每次更改文件夹名称,并且名称链接到工作表1中的单元格E8。 请协助
答案 0 :(得分:1)
每次更改文件夹名称,名称将链接到工作表1中的单元格E8。
DestinFileFolder = ThisWorkbook.Sheets("Sheet1").Range("E8").Value