如何在 Java 中使用操作系统的默认文件选择器(在 Linux 和 Windows 中)
How to use the default File Chooser for the operating system in Java (in Linux and Windows)
我想使用 java 操作系统的文件选择器。
我目前正在使用 JFileChooser,但它看起来很古老!
我看到了这个问题:How to use the default File Chooser for the operating system? java
但这有问题!
我试过:
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
}catch(Exception ex) {
ex.printStackTrace();
}
没有区别!
我尝试使用 JFileDialog 但首先据我在互联网上阅读的内容,最好避免使用 awt 直到你有充分的理由使用它(根据 )并且我也觉得有些JFileChooser 具有 awt 没有的功能(或者我还不知道!)
就像我只想允许用户访问 select 目录但在 FileDialog 中不太可能(或者我不知道)
此外,我链接的问题已经很老了,所以我想现在有一种新的方法可以解决这个问题?
我目前正在使用 JFileChooser,这里有一段代码可以帮助您重现我现在拥有的内容:
import javax.swing.*;
import javax.swing.event.*;
import java.awt.*;
import java.awt.event.*;
public class Try{
public static void main(String[] args) {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception e) {
}
JFileChooser fileChooser = new JFileChooser();
fileChooser.setDialogTitle("Choose directory");
fileChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
fileChooser.addActionListener(new MyActionListener());
fileChooser.showOpenDialog(new JFrame());
}
}
class MyActionListener implements ActionListener {
@Override
public void actionPerformed(ActionEvent actionEvent) {
switch (actionEvent.getActionCommand()){
case "ApproveSelection":{
// DO SOMETHING
break;
}
case "CancelSelection":{
// DO SOMETHING
break;
}
}
}
}
所以,我无法发现为什么 setLookAndFeel 对我不起作用!
但是我已经找到了解决问题的方法!
所以,这是代码:
import java.util.*;
import java.io.*;
import java.awt.*;
public class Try2{
public static void main(String[] args) throws Exception{
Process p = Runtime.getRuntime().exec("zenity --file-selection --directory");
Scanner sc = new Scanner(p.getInputStream());
System.out.println("-----------------------------------");
while (sc.hasNextLine()) {
System.out.println(sc.nextLine());
}
System.out.println("-----------------------------------");
}
}
这是最接近我想要的
我想使用 java 操作系统的文件选择器。
我目前正在使用 JFileChooser,但它看起来很古老!
我看到了这个问题:How to use the default File Chooser for the operating system? java
但这有问题!
我试过:
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
}catch(Exception ex) {
ex.printStackTrace();
}
没有区别!
我尝试使用 JFileDialog 但首先据我在互联网上阅读的内容,最好避免使用 awt 直到你有充分的理由使用它(根据 )并且我也觉得有些JFileChooser 具有 awt 没有的功能(或者我还不知道!)
就像我只想允许用户访问 select 目录但在 FileDialog 中不太可能(或者我不知道)
此外,我链接的问题已经很老了,所以我想现在有一种新的方法可以解决这个问题?
我目前正在使用 JFileChooser,这里有一段代码可以帮助您重现我现在拥有的内容:
import javax.swing.*;
import javax.swing.event.*;
import java.awt.*;
import java.awt.event.*;
public class Try{
public static void main(String[] args) {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception e) {
}
JFileChooser fileChooser = new JFileChooser();
fileChooser.setDialogTitle("Choose directory");
fileChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
fileChooser.addActionListener(new MyActionListener());
fileChooser.showOpenDialog(new JFrame());
}
}
class MyActionListener implements ActionListener {
@Override
public void actionPerformed(ActionEvent actionEvent) {
switch (actionEvent.getActionCommand()){
case "ApproveSelection":{
// DO SOMETHING
break;
}
case "CancelSelection":{
// DO SOMETHING
break;
}
}
}
}
所以,我无法发现为什么 setLookAndFeel 对我不起作用!
但是我已经找到了解决问题的方法!
所以,这是代码:
import java.util.*;
import java.io.*;
import java.awt.*;
public class Try2{
public static void main(String[] args) throws Exception{
Process p = Runtime.getRuntime().exec("zenity --file-selection --directory");
Scanner sc = new Scanner(p.getInputStream());
System.out.println("-----------------------------------");
while (sc.hasNextLine()) {
System.out.println(sc.nextLine());
}
System.out.println("-----------------------------------");
}
}
这是最接近我想要的