《Java程式設計》第16週週四:GUI程式設計及檔案對話方塊的使用(專案二)
阿新 • • 發佈:2019-01-26
import java.awt.Color; import java.awt.FlowLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.File; import java.io.FileFilter; import javax.swing.ImageIcon; import javax.swing.JButton; import javax.swing.JFileChooser; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JTextField; class myFileFilter implements FileFilter{ @Override public boolean accept(File pathname) { String filename = pathname.getName().toLowerCase(); if(filename.contains(".jpg")){ return false; }else{ return true; } } } public class FileChooser extends JFrame implements ActionListener{ /** * */ private static final long serialVersionUID = 1L; JButton open=null; JTextField jtfPath = null; JLabel jlbImg = null; JButton btnNext = null; String strPath = ""; //資料夾路徑 String strFileName = ""; //檔名稱 File[] fileArray; // 資料夾下所有檔案 int NUM_IMG = 0; // 檔案總數目 int index = 0; // 當前檔案的序號 public static void main(String[] args) { new FileChooser(); } public FileChooser(){ this.setTitle("Week16"); // 設定佈局方式 this.setLayout(new FlowLayout()); // 按鈕初始化 open=new JButton("選擇目錄"); // 新增監聽 open.addActionListener(this); // 把按鈕新增到JFrame容器中 this.add(open); // 新增文字框控制元件 jtfPath = new JTextField("選擇的檔案",40); jtfPath.setEditable(false); // 不可編輯 jtfPath.setHorizontalAlignment(JTextField.CENTER); // 居中 this.add(jtfPath); // 顯示下一張圖片 btnNext = new JButton("顯示下一張"); this.add(btnNext); btnNext.addActionListener(this); // 新增顯示Image的JLabel控制元件 jlbImg = new JLabel(); jlbImg.setBackground(Color.RED); jlbImg.setBounds(100, 100, 200, 200); this.add(jlbImg); // 設定JFrame的大小,可顯示,預設關閉按鈕 this.setBounds(400, 200, 700, 500); this.setVisible(true); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); } @Override public void actionPerformed(ActionEvent e) { // TODO Auto-generated method stub //多個元件需要監聽的情況下,事件響應的編碼方式 if(e.getSource()==open){ //如果是open按鈕 JFileChooser jfc=new JFileChooser(); //jfc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES ); jfc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY); jfc.showDialog(new JLabel(), "選擇"); File file=jfc.getSelectedFile(); if(file.isDirectory()){ System.out.println("資料夾:"+file.getAbsolutePath()); }else if(file.isFile()){ System.out.println("檔案:"+file.getAbsolutePath()); } System.out.println(jfc.getSelectedFile().getName()); // 把檔案路徑顯示在文字框中 jtfPath.setText(file.getAbsolutePath()); //jlbImg.setIcon(new ImageIcon(file.getAbsolutePath())); // 獲取檔案路徑 與檔名 strPath = file.getAbsolutePath(); strFileName = jfc.getSelectedFile().getName(); if(file!=null && file.isDirectory()){ // 參考: java中File.listFiles(FileFilter) FileFilter的使用 // http://zhouzaibao.iteye.com/blog/347557 ; // 獲取資料夾下所有的檔案 fileArray = file.listFiles(); NUM_IMG = fileArray.length; } } if(e.getSource()==btnNext){ //如果是next按鈕 String strTmp = fileArray[index].toString(); index++; if(index==NUM_IMG) index = 0; jlbImg.setIcon(new ImageIcon(strTmp)); } } }