Object[] possibilities = { "A:/", "B:/", "C:/" };
String drive = (String) JOptionPane.showInputDialog(frame,
"Pick a Drive", " ", JOptionPane.PLAIN_MESSAGE, null,
possibilities, "C:/");
有没有更快的方法来使选项“A:/”到“Z:/”possibilities
而不必写出每个字母?