gpt4 book ai didi

java - 使用 Java 保存 WizardPage 设置

转载 作者:行者123 更新时间:2023-12-01 14:19:05 26 4
gpt4 key购买 nike

我创建了一个带有向导页面的向导,用于导出文件夹中的文件。如何保存向导中最后选择的文件夹?因此,如果用户再次打开向导,则应将上次选择的选项写入其中。

最佳答案

您可以尝试以下操作:

 1. Retrieve DialogSettings object.
2. Find your section. If it is null, create it.
3. Use it to store/load related information.

IDialogSettings settings = WorkbenchPlugin.getDefault().getDialogSettings();
IDialogSettings section = settings.getSection("your_section_name");
if (section == null) {
section = settings.addNewSection("your_section_name");
}
String lastSelectedFolder = section.get("your_last_selected_folder_key");

关于java - 使用 Java 保存 WizardPage 设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17806063/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com