How to get directory path using JFileChooser?

好久不见. 提交于 2019-12-10 02:33:43

问题


I have a small java GUI application with a text field on it. When the user clicks the text field an event is triggered and the JFileChooser is launched. It's restricted to directories only.

What I'm trying to do is to get the full path of the directory that was chosen and put it in the text field.

I have no idea how to do this, I've searched through a ton of java tutorials and documentations and I can't find an answer. Can someone help me?

To clarify: I want to get the full path as a string and put it in the text field, overwriting anything that was there before.


回答1:


Try something like

myTextField.setText(myFileChooser.getSelectedFile().getAbsolutePath());

What you are doing there is retrieving the File object from the file chooser, then grabbing its path and throwing it into the text field.




回答2:


Check out the JFileChooser.getCurrentDirectory() function:

http://download.oracle.com/javase/1.4.2/docs/api/javax/swing/JFileChooser.html#getCurrentDirectory())



来源:https://stackoverflow.com/questions/4019478/how-to-get-directory-path-using-jfilechooser

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!