到目前为止,这是我的代码,我想将选定的文件移动到我稍后将在代码中定义的路径我如何从选定的文件中获取路径
import java.awt.Component;
import javax.swing.JFileChooser;
public class CopyFileExample
{
public static void main(String[] args)
{
final JFileChooser fc = new JFileChooser();
Component aComponent = null;
int returnVal = fc.showOpenDialog(aComponent);
}
}