选择多个文件的话应该是放在File[]里,然后对这个File[]进行遍历getAbsolutePath这样得到文件的全路径
JFileChooser fc=new JFileChooser();JTextArea textArea=new JTextArea();……File[] files = fc.getSelectedFiles();for(File file : files){ textArea.append(file.getAbsolutePath());}