发布网友 发布时间:2022-04-23 05:22
共5个回答
热心网友 时间:2023-10-16 05:21
FileDialog fileDialog = new FileDialog(this, "选择文件", FileDialog.LOAD);
fileDialog.setVisible(true);
filePath = fileDialog.getDirectory();//获取文件的路径
text.setTex(filePath)
热心网友 时间:2023-10-16 05:21
File A=new File("文件名及其路径");
String filePath=A.getAbsolutePath().getPath();
热心网友 时间:2023-10-16 05:22
用request.getRealPath("");或application.getRealPath("");
得到web所在的绝对路径!
然后加上相对路径就可以了!
热心网友 时间:2023-10-16 05:22
既然要选择文件,建议用javax.swing.JFileChooser 这个控件;
在button的单击事件中,加入
JTextField.setText(JFileChooser .getSelectedFile().getAbsolutePath())
热心网友 时间:2023-10-16 05:23
你是Java程序还是web程序?