나는 HTML 편집기를 만들었고 파일 이름을 & JTextPane에서 열린 파일의 경로로 가져 오려고합니다. 어떠한 제안?자바 프로그램에서 열리는 파일의 전체 파일 이름과 경로를 얻는 방법은 무엇입니까?
public void actionPerformed(ActionEvent e) {
//Handle open button action.
if (e.getSource() == openButton) {
int returnVal = fc.showOpenDialog(FileChooserDemo.this);
if (returnVal == JFileChooser.APPROVE_OPTION) {
File file = fc.getSelectedFile();
//At this point you can use: file.getName() to get your filename
//You can also use file.getPath()
} else {
//Canceled opening
}
}
}
당신은을 절약 할 수있다 : 당신을 가정
몇 가지 샘플 코드를 게시 할 수 있습니까? – blackSmith
http://docs.oracle.com/javase/6/docs/api/java/io/File.html –
* "열린 파일의 파일 이름 및 경로를 가져오고 싶습니다."* 사용자 (또는 사용자 코드) 'JEditorPane'에 어떤 파일을로드 할 것인지 말하지 않습니까? 그것에 대한 참조를 유지하십시오! –