Gluon JavaFX 中是否有任何文件导航?

假设您要使用使用 Gluon JavaFX 创建的应用程序打开图片或文件。是否有任何文件导航窗口可用于选择该文件或图片?

假设我们知道我们的localRoot = /root

File localRoot = Services.get(StorageService.class)
            .flatMap(s -> s.getPublicStorage(""))
            .orElseThrow(() -> new RuntimeException("Error retrieving private storage"));

或者我是否需要手动将文件放在文件夹中,然后使用表格视图扫描所有文件并将它们放在表格视图中以便我可以选择它们?


慕妹3242003
浏览 71回答 1
1回答

慕容3067478

您对公共存储 API 的使用是错误的,您需要提供一个有效的名称,例如Documents或Pictures。这些是文件系统中的有效公用文件夹。例如,您可以获得此类文件夹中的文件列表:File picRoot = Services.get(StorageService.class)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .flatMap(s -> s.getPublicStorage("Pictures"))&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; .orElseThrow(() -> new RuntimeException("Folder notavailable"));&nbsp;File[] files = picRoot.listFiles();&nbsp; &nbsp;&nbsp;if (files != null) {&nbsp; &nbsp; for (File file : files) {&nbsp; &nbsp; &nbsp; &nbsp; System.out.println("File: " + file);&nbsp; &nbsp; }}您如何处理这些文件,或者如何将这些文件呈现给用户,都取决于您。但是,如果您想浏览图像库,并将这些图像呈现给用户,以便他/她可以选择一个,您应该使用PicturesService::loadImageFromGallery:从设备的图像库中检索图像这将使用本机浏览器应用程序,您可以搜索所有带有图片的常用文件夹。它将返回一个Optional<Image>(如果用户取消则为空),您还可以使用getImageFile()返回Optional<File>与原始图像关联的文件。来自 JavaDoc:ImageView imageView = new ImageView();Services.get(PicturesService.class).ifPresent(service -> {&nbsp; &nbsp; // once selected, the image is visualized&nbsp; &nbsp; service.loadFromGallery().ifPresent(image -> imageView.setImage(image));&nbsp; &nbsp; // and the file can be shared&nbsp; &nbsp; service.getImageFile().ifPresent(file ->&nbsp;&nbsp; &nbsp; &nbsp; Services.get(ShareService.class).ifPresent(share ->&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; share.share("image/jpeg", file)));&nbsp;});
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java