本地文件夾選擇框

int result = 0;
File file = null;
String path = null;
JFileChooser fileChooser = new JFileChooser();
FileSystemView fsv = FileSystemView.getFileSystemView(); //注意了,這裏重要的一句
System.out.println(fsv.getHomeDirectory()); //獲得桌面路徑
fileChooser.setCurrentDirectory(fsv.getHomeDirectory());
fileChooser.setDialogTitle("請選擇要上傳的文件...");
fileChooser.setApproveButtonText("肯定");
fileChooser.setFileSelectionMode(JFileChooser.FILES_ONLY);
result = fileChooser.showOpenDialog(null);    //此處的參數不知道該寫什麼,暫時用空代替,也能彈出選擇框
if (JFileChooser.APPROVE_OPTION == result) {
path=fileChooser.getSelectedFile().getPath();
System.out.println("path: "+path);
}

FileOutputStream fos = new FileOutputStream("E:\\TEST.text");
fos.write(value.getBytes());
fos.close();html

 

public String buildWinDiolag(){
JFileChooser chooser2 = new JFileChooser();
chooser2.setDialogTitle("另存爲");
//注意兩個方法不一樣
int returnVal = chooser2.showSaveDialog(null);
chooser2.setVisible(true);
if(returnVal == JFileChooser.CANCEL_OPTION){
return "";
}
String pathname = chooser2.getSelectedFile().getAbsolutePath();
return pathname;     //此處返回值爲選中的文件的絕對路徑
}ui

 

 

 

 

 

上傳部分摘自:http://www.cnblogs.com/xyzq/p/6023888.htmlhtm

相關文章
相關標籤/搜索