【问题标题】:How to use JFileChooser to display image in a JFrame or JPanel如何使用 JFileChooser 在 JFrame 或 JPanel 中显示图像
【发布时间】:2016-10-09 07:18:20
【问题描述】:

我创建了一个可以更改图像格式的程序。一切正常,但是当我通过 JFileChooser 打开图像时,我得到了java.lang.ClassCastException。请有人可以帮助我。我想我在使用文件选择器时犯了一个错误。我是初学者,请有人尽快帮助我吗?

 package helloWorld;

   import java.io.*;
   import java.util.TreeSet;
   import java.awt.*;
   import java.awt.event.*;
   import java.awt.geom.AffineTransform;
   import java.awt.image.*;
   import javax.imageio.*;
   import javax.swing.*;
   import javax.swing.filechooser.FileNameExtensionFilter;

   public class SaveImage extends Component implements Action Listener {

    String descs[] = {
    "Original", 
        "Convolve : LowPass",
        "Convolve : Sharpen", 
        "LookupOp",
    };

    int opIndex;
    private BufferedImage bi, biFiltered;
    private BufferedImage temp;
    int w, h;

    public static final float[] SHARPEN3x3 = { // sharpening filter kernel
        0.f, -1.f,  0.f,
       -1.f,  5.f, -1.f,
        0.f, -1.f,  0.f
    };

    public static final float[] BLUR3x3 = {
        0.1f, 0.1f, 0.1f,    // low-pass filter kernel
        0.1f, 0.2f, 0.1f,
        0.1f, 0.1f, 0.1f
    };

    public SaveImage()

    {

        try {
            bi = ImageIO.read(new File("")); // yahan kisi image ka path daal de
            w = bi.getWidth(null);
            h = bi.getHeight(null);
            if (bi.getType() != BufferedImage.TYPE_INT_RGB) {
                BufferedImage bi2 =
                    new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
                Graphics big = bi2.getGraphics();
                big.drawImage(bi, 0, 0, null);
                biFiltered = bi = bi2;
            }
        } catch (IOException e) {
            System.out.println("Image could not be read");
            System.exit(1);
        }
    }


    public void setimg( String path){}


    public Dimension getPreferredSize() {
        return new Dimension(w, h);
    }

    String[] getDescriptions() {
        return descs;
    }

    void setOpIndex(int i) {
        opIndex = i;
    }

    public void paint(Graphics g) {
        filterImage();
        g.drawImage(biFiltered, 0, 0, null);
    }

    int lastOp;
    public void filterImage() {
        BufferedImageOp op = null;

        if (opIndex == lastOp) {
            return;
        }
        lastOp = opIndex;
        switch (opIndex) {

        case 0: biFiltered = bi; /* original */
                return; 
        case 1:  /* low pass filter */
        case 2:  /* sharpen */
            float[] data = (opIndex == 1) ? BLUR3x3 : SHARPEN3x3;
            op = new ConvolveOp(new Kernel(3, 3, data),
                                ConvolveOp.EDGE_NO_OP,
                                null);

            break;

        case 3 : /* lookup */
            byte lut[] = new byte[256];
            for (int j=0; j<256; j++) {
                lut[j] = (byte)(256-j); 
            }
            ByteLookupTable blut = new ByteLookupTable(0, lut); 
            op = new LookupOp(blut, null);
            break;
        }


        biFiltered = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
        op.filter(bi, biFiltered);
    }

    /* Return the formats sorted alphabetically and in lower case */
    public String[] getFormats() {
        String[] formats = ImageIO.getWriterFormatNames();
        TreeSet<String> formatSet = new TreeSet<String>();
        for (String s : formats) {
            formatSet.add(s.toLowerCase());
        }
        return formatSet.toArray(new String[0]);
    }


     public void actionPerformed(ActionEvent e) {

         if (e.getActionCommand()=="browse")
         {
             //yahan pe bhundd h browse ka
             JFileChooser file = new JFileChooser();
            file.setCurrentDirectory(new File(System.getProperty("user.home")));
            FileNameExtensionFilter filter = new             FileNameExtensionFilter("*.Images","jpg", "gif", "png" );
            file.addChoosableFileFilter(filter);
            int result = file.showSaveDialog(null);
            if (result==JFileChooser.APPROVE_OPTION)
            {
                File selectedFile = file.getSelectedFile();
                String Path = selectedFile.getAbsolutePath();
            try{
                setimg(Path);// bi = ImageIO.read(new File(Path));
            //  temp = new BufferedImage(Path);//       label.setIcon(ResizeImage(Path));
                //}
            //  catch(IOException e1){
                    System.out.println("file not found");
                //}
            }
            else if(result== JFileChooser.CANCEL_OPTION)
            {
            //  ImageIcon Mimage = new      ImageIcon("C:\\Users\\Hasnain\\Downloads\\1.jpg");
                System.out.println("No file choosed");
                //label.setIcon(Mimage);
            }    
         }

         JComboBox cb = (JComboBox)e.getSource();
         if (cb.getActionCommand().equals("SetFilter")) {
             setOpIndex(cb.getSelectedIndex());
             repaint();
         } else if (cb.getActionCommand().equals("Formats")) {
             /* Save the filtered image in the selected format.
              * The selected item will be the name of the format to use
              */
             String format = (String)cb.getSelectedItem();
             /* Use the format name to initialise the file suffix.
              * Format names typically correspond to suffixes
              */
             File saveFile = new File("savedimage."+format);
             JFileChooser chooser = new JFileChooser();
             chooser.setSelectedFile(saveFile);
             int rval = chooser.showSaveDialog(cb);
             if (rval == JFileChooser.APPROVE_OPTION) {
                 saveFile = chooser.getSelectedFile();
                 /* Write the filtered image in the selected format,
                  * to the file chosen by the user.
                  */
                 try {
                     ImageIO.write(biFiltered, format, saveFile);
                 } catch (IOException ex) {
                 }
             }
         }
    };

    public static void main(String s[]) {
        JButton button = new JButton("Browse");
        button.setBounds(300, 300, 100, 40);

        JFrame f = new JFrame("Save Image Sample");
        f.addWindowListener(new WindowAdapter() {
            public void windowClosing(WindowEvent e) {System.exit(0);}
        });
        SaveImage si = new SaveImage();
        f.add("Center", si);
        JComboBox choices = new JComboBox(si.getDescriptions());
        choices.setActionCommand("SetFilter");
        choices.addActionListener(si);
        JComboBox formats = new JComboBox(si.getFormats());
        formats.setActionCommand("Formats");
        formats.addActionListener(si);
        JPanel panel = new JPanel();
        panel.add(button);
        button.setEnabled(true);

        panel.add(choices);
        panel.add(new JLabel("Save As"));
        panel.add(formats);
        f.add("South", panel);
        f.pack();
        f.setVisible(true);
        button.addActionListener(si);
        button.setActionCommand("browse");
    }
}  

【问题讨论】:

  • 您提供的代码无法编译。方法public void actionPerformed(ActionEvent e) 中的问题。试着澄清一下。另外,在你的构造函数中 SaveImage() bi = ImageIO.read(new File("")) 是绝对没有意义的
  • 你的“主要”问题在这里 - “JComboBox cb = (JComboBox)e.getSource();”在您处理“浏览”按钮后立即调用,但源不是 JComboBox。您应该避免盲目投射对象并使用 instanceof 或匿名侦听器或 Actions
  • 我会避免从 Component 扩展并考虑改用 JPanel,您会遇到更少的 z 排序问题。这意味着您应该在paint 上使用paintComponent 并确保将其称为超级方法,但我只会使用JLabel 并为自己省去很多麻烦
  • 谁能帮我解决这个问题?
  • SaveImage() bi = ImageIO.read(new File("")) 我将参数保留为 null 但在编译时我提供了初始化 bi 的路径

标签: java swing awt


【解决方案1】:

这是一个文件选择器的演示

 import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import javax.swing.JButton;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.filechooser.FileFilter;

 public class JFileChooserDemo extends JPanel {

 private JTextArea textArea;

 public JFileChooserDemo() {
  super(new BorderLayout());
   createPanel();
   }

 private void createPanel() {
JButton openFileChooser = new JButton("Apri File");
JButton saveFileChooser = new JButton("Salva File");
openFileChooser.addActionListener(new OpenFileChooser());
saveFileChooser.addActionListener(new SaveFileChooser());
textArea = new JTextArea(10, 20);
add(new JScrollPane(textArea), BorderLayout.CENTER);
JPanel panelButton = new JPanel();
panelButton.add(openFileChooser);
panelButton.add(saveFileChooser);
 add(panelButton, BorderLayout.SOUTH);
  }

   private class OpenFileChooser implements ActionListener {

   public void actionPerformed(ActionEvent e) {
  try {
    textArea.setText("");
    JFileChooser fileChooser = new JFileChooser();
    fileChooser.setFileFilter(new TxtFileFilter());
    int n = fileChooser.showOpenDialog(JFileChooserDemo.this);
    if (n == JFileChooser.APPROVE_OPTION) {
      File f = fileChooser.getSelectedFile();
      BufferedReader read = new BufferedReader(new FileReader(f));
      String line = read.readLine();
      while(line != null) {
        textArea.append(line);
        line = read.readLine();
      }
      read.close();
    }
   } catch (Exception ex) {}
   }
 }

  private class SaveFileChooser implements ActionListener {

 public void actionPerformed(ActionEvent e) {
  try {
    JFileChooser fileChooser = new JFileChooser();
    fileChooser.setFileFilter(new TxtFileFilter());
    int n = fileChooser.showSaveDialog(JFileChooserDemo.this);
    if (n == JFileChooser.APPROVE_OPTION) {
      File f = fileChooser.getSelectedFile();
      BufferedWriter write = new BufferedWriter(new FileWriter(f));
      write.append(textArea.getText());
      write.flush();
      write.close();
    }
  } catch (Exception ex) {}
  }
 }

 private class TxtFileFilter extends FileFilter {

public boolean accept(File file) {
  if (file.isDirectory()) return true;
    String fname = file.getName().toLowerCase();
    return fname.endsWith("txt");
}

  public String getDescription() {
  return "File di testo";
  }
}

 public static void main(String[] argv) {
JFrame frame = new JFrame("JFileChooserDemo");
JFileChooserDemo demo = new JFileChooserDemo();
frame.getContentPane().add(demo);
frame.pack();
frame.setVisible(true);
 }
}

【讨论】:

    【解决方案2】:

    是你自己的图像处理类吗?

    下面的代码是我努力的干净代码。

    package com.tobee.ui.test;
    
    import java.awt.Component;
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import java.awt.image.BufferedImage;
    import java.awt.image.BufferedImageOp;
    import java.awt.image.ByteLookupTable;
    import java.awt.image.ConvolveOp;
    import java.awt.image.Kernel;
    import java.awt.image.LookupOp;
    import java.io.File;
    import java.io.IOException;
    import java.util.TreeSet;
    
    import javax.imageio.ImageIO;
    import javax.swing.JButton;
    import javax.swing.JComboBox;
    import javax.swing.JFileChooser;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    import javax.swing.filechooser.FileNameExtensionFilter;
    
    public class SaveImage extends Component implements ActionListener {
    
        /**
         * 
         */
        private static final long serialVersionUID = 1L;
    
        String descs[] = { "Original", "Convolve : LowPass", "Convolve : Sharpen", "LookupOp", };
    
        int opIndex;
        private BufferedImage bi, biFiltered;
        //private BufferedImage temp;
        int w, h;
    
        public static final float[] SHARPEN3x3 = { // sharpening filter kernel
                0.f, -1.f, 0.f, -1.f, 5.f, -1.f, 0.f, -1.f, 0.f };
    
        public static final float[] BLUR3x3 = { 0.1f, 0.1f, 0.1f, // low-pass filter
                                                                    // kernel
                0.1f, 0.2f, 0.1f, 0.1f, 0.1f, 0.1f };
    
        public SaveImage(String path) {
    
            try {
                bi = ImageIO.read(new File(path)); 
                w = bi.getWidth(null);
                h = bi.getHeight(null);
                if (bi.getType() != BufferedImage.TYPE_INT_RGB) {
                    BufferedImage bi2 = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
                    Graphics big = bi2.getGraphics();
                    big.drawImage(bi, 0, 0, null);
                    biFiltered = bi = bi2;
                }
            } catch (IOException e) {
                System.out.println("Image could not be read");
                System.exit(1);
            }
        }
    
        public void setimg(String path) {
            System.err.println("....setimg...." + path);
    
            if(bi != null) bi.flush();
            bi = null;
    
            try {
                bi = ImageIO.read(new File(path)); // yahan kisi image ka path daal de
                w = bi.getWidth();
                h = bi.getHeight();
                if (bi.getType() != BufferedImage.TYPE_INT_RGB) {
                    BufferedImage bi2 = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
                    Graphics big = bi2.getGraphics();
                    big.drawImage(bi, 0, 0, null);
                    biFiltered = bi = bi2;
                }
            } catch (IOException e) {
                System.out.println("Image could not be read");
                System.exit(1);
            }
    
            //choices.setSelectedIndex(0);
            //formats.setSelectedIndex(0);
        }
    
        public Dimension getPreferredSize() {
            return new Dimension(w, h);
        }
    
        String[] getDescriptions() {
            return descs;
        }
    
        void setOpIndex(int i) {
            opIndex = i;
        }
    
        public void paint(Graphics g) {
            filterImage();
            g.drawImage(biFiltered, 0, 0, null);
        }
    
        int lastOp;
    
        public void filterImage() {
            BufferedImageOp op = null;
    
            if (opIndex == lastOp) {
                return;
            }
            lastOp = opIndex;
            switch (opIndex) {
    
            case 0:
                biFiltered = bi; /* original */
                return;
            case 1: /* low pass filter */
            case 2: /* sharpen */
                float[] data = (opIndex == 1) ? BLUR3x3 : SHARPEN3x3;
                op = new ConvolveOp(new Kernel(3, 3, data), ConvolveOp.EDGE_NO_OP, null);
    
                break;
    
            case 3: /* lookup */
                byte lut[] = new byte[256];
                for (int j = 0; j < 256; j++) {
                    lut[j] = (byte) (256 - j);
                }
                ByteLookupTable blut = new ByteLookupTable(0, lut);
                op = new LookupOp(blut, null);
                break;
            }
    
            biFiltered = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
            op.filter(bi, biFiltered);
        }
    
        /* Return the formats sorted alphabetically and in lower case */
        public String[] getFormats() {
            String[] formats = ImageIO.getWriterFormatNames();
            TreeSet<String> formatSet = new TreeSet<String>();
            for (String s : formats) {
                formatSet.add(s.toLowerCase());
            }
            return formatSet.toArray(new String[0]);
        }
    
        public void actionPerformed(ActionEvent e) {
            String command = e.getActionCommand();
            System.out.println("Command...." + command);
    
    
            if ( command.equalsIgnoreCase("browse") ) {
                // yahan pe bhundd h browse ka
                JFileChooser file = new JFileChooser();
                file.setCurrentDirectory(new File(System.getProperty("user.home")));
                FileNameExtensionFilter filter = new FileNameExtensionFilter("*.Images", "jpg", "gif", "png");
                file.addChoosableFileFilter(filter);
    
                int result = file.showSaveDialog(null);
    
                if (result == JFileChooser.APPROVE_OPTION) {
                    File selectedFile = file.getSelectedFile();
                    String Path = selectedFile.getAbsolutePath();
                    try {
                        setimg(Path);
                        bi = ImageIO.read(new File(Path));
                        //temp = new BufferedImage(Path);
                        //label.setIcon(ResizeImage(Path));
                    } catch (IOException e1) {
                        System.out.println("file not found");
                    }
                } else if (result == JFileChooser.CANCEL_OPTION) {
                    // ImageIcon Mimage = new
                    // ImageIcon("C:\\Users\\Hasnain\\Downloads\\1.jpg");
                    System.out.println("No file choosed");
                    // label.setIcon(Mimage);
                }
            }
            //JComboBox cb = (JComboBox) e.getSource();
            else if( command.equalsIgnoreCase("SetFilter")) {
    
                System.out.println("..SetFilter..." + choices.getSelectedIndex() + "::" + choices.getSelectedItem().toString());
    
                setOpIndex(choices.getSelectedIndex());
                repaint();
            } else if (command.equalsIgnoreCase("Formats")) {
                System.out.println("..Formats..." + formats.getSelectedIndex() + "::" + formats.getSelectedItem().toString());
    
                int opt = JOptionPane.showConfirmDialog(null, "Do you want to save it?", "save image", 
                        JOptionPane.OK_CANCEL_OPTION, JOptionPane.WARNING_MESSAGE, null);
    
                switch(opt)
                {
                case JOptionPane.CANCEL_OPTION:
                    return;
                }
    
                /*
                 * Save the filtered image in the selected format. The selected item
                 * will be the name of the format to use
                 */
                String format = (String) formats.getSelectedItem();
                /*
                 * Use the format name to initialise the file suffix. Format names
                 * typically correspond to suffixes
                 */
                File saveFile = new File("savedimage." + format);
                JFileChooser chooser = new JFileChooser();
                chooser.setSelectedFile(saveFile);
                int rval = chooser.showSaveDialog(formats);
                if (rval == JFileChooser.APPROVE_OPTION) {
                    saveFile = chooser.getSelectedFile();
                    /*
                     * Write the filtered image in the selected format, to the file
                     * chosen by the user.
                     */
                    try {
                        ImageIO.write(biFiltered, format, saveFile);
                    } catch (IOException ex) {
                    }
                }
            }
        };
    
        final static Runnable doRun = new Runnable()
        {
    
            @Override
            public void run() {
    
                JOptionPane.showMessageDialog(null, "You must choose file first", "choose file", JOptionPane.INFORMATION_MESSAGE, null);
    
    
                JFileChooser file = new JFileChooser();
                file.setCurrentDirectory(new File(System.getProperty("user.home")));
                FileNameExtensionFilter filter = new FileNameExtensionFilter("*.Images", "jpg", "gif", "png");
                file.addChoosableFileFilter(filter);
                int result = file.showSaveDialog(null);
                String Path = null;
    
                switch(result)
                {
                case JFileChooser.APPROVE_OPTION:
                    Path = file.getSelectedFile().getAbsolutePath();
                    break;
                case JFileChooser.CANCEL_OPTION:
                    return;
                }
    
    
                JFrame f = new JFrame("Save Image Sample");
                f.addWindowListener(new WindowAdapter() {
                    public void windowClosing(WindowEvent e) {
                        System.exit(0);
                    }
                });
    
                JPanel panel = new JPanel();
                System.setProperty("user.home", Path);
                SaveImage si = new SaveImage(Path);
    
                JComboBox<String> choices = new JComboBox<String>(si.getDescriptions());
                choices.setActionCommand("SetFilter");
                choices.addActionListener(si);
                JComboBox<String> formats = new JComboBox<String>(si.getFormats());
                formats.setActionCommand("Formats");
                formats.addActionListener(si);
    
                si.setChoiceComponent(choices);
                si.setFormatComponent(formats);
    
                JButton button = new JButton("Browse");
                button.setActionCommand("browse");
                button.addActionListener(si);
                button.setBounds(300, 300, 100, 40);
                button.setEnabled(true);
                panel.add(button);
    
                panel.add(choices);
                panel.add(new JLabel("Save As"));
                panel.add(formats);
                f.add("Center", si);
                f.add("South", panel);
                f.pack();
                f.setVisible(true);
    
    
            }
    
        };
    
        public static void main(String s[]) {
            SwingUtilities.invokeLater(doRun);
    
        }
    
        private JComboBox<String> choices;
        private JComboBox<String> formats;
    
        protected void setFormatComponent(final JComboBox<String> formats) {
            this.formats = formats;
        }
    
        protected void setChoiceComponent(final JComboBox<String> choices) {
            this.choices = choices;
        }
    }
    

    我认为您的过滤方法可能与之前打开的原始方法混合...

    所以你必须仔细跟踪过滤方法。

    【讨论】:

      猜你喜欢
      • 2013-06-17
      • 1970-01-01
      • 2011-10-07
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2011-05-16
      • 2021-07-30
      • 2016-07-23
      相关资源
      最近更新 更多