图像对话框路径

ImageJ dialog path

我有一个对话框询问首选项,在这个对话框中我想询问路径。我这样做:Dialog.addString("Saving directory", 目录); ...我要求更多。

但我想打开一个新的 window,您可以在其中搜索路径,就像使用此命令一样,但在对话框中有更多问题和答案。 路径 = File.openDialog("Select a File");

谢谢

如果您使用 Fiji, you can try its GenericDialogPlus class,例如在 Javascript:

importClass(Packages.fiji.util.gui.GenericDialogPlus);

gdp = new GenericDialogPlus("New dialog");
gdp.addDirectoryField("Directory", "/");
gdp.addCheckbox("Other option", true);
gdp.showDialog();

在普通 ImageJ 1.x macro language 中,询问目录和附加参数的首选方式是进行多个连续的对话。使用getDirectory("Choose a Directory")请求目录,使用Dialog函数请求其他参数:

path = getDirectory("Choose a Directory");
Dialog.create("Choose parameters");
Dialog.addString("Title:", title);
Dialog.show();
title = Dialog.getString();

print path;
print title;