Examples of openFileDialog()


Examples of javax.jnlp.FileOpenService.openFileDialog()

public final class FileServiceROMChooser {

  public static FileContents chooseFileToLoad() {
    try {
      FileOpenService fos = (FileOpenService)ServiceManager.lookup("javax.jnlp.FileOpenService");
      FileContents fileCon = fos.openFileDialog(null, ROMLoader.VALID_LOAD_FILE_EXTENSIONS);
      if (fileCon == null) return null;
      return fileCon;
    } catch (Exception ex) {
      System.out.println("File Service Cartridge Chooser: unable to open dialog\n" + ex);
      return null;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.