简体   繁体   English

如何使用JFileChooser在JFrame中上传和显示图像

[英]how to upload and display image in JFrame using JFileChooser

I need to upload and display an image selected with the JFileChooser (ie the user wants to set his/her profile picture) in a JFrame .. How should I do it? 我需要上传并显示使用JFileChooser选择的图像(即用户想要在JFrame设置他/她的个人资料图片)..我应该怎么做?

Here is my code for choosing the file: 这是我选择文件的代码:

private void UploadImageActionPerformed(java.awt.event.ActionEvent evt) {
    int returnVal = fileChosser.showOpenDialog(this);
    if (returnVal == JFileChooser.APPROVE_OPTION) {
        File file = fileChosser.getSelectedFile();
        // What to do with the file
        // I want code for this part
        try {
            //code that might create an exception 
        } 
        catch (Exception e1) {
            e.printStackTrace();
        }
    }
}

I solved it myself. 我自己解决了。 I chose an image and displayed in a JLabel . 我选择了一个图像并在JLabel显示。

Here is My code: 这是我的代码:

private void uploadImageActionPerformed(java.awt.event.ActionEvent evt) {                                            
    JFileChooser filechooser = new JFileChooser();
    filechooser.setDialogTitle("Choose Your File");
    filechooser.setFileSelectionMode(JFileChooser.FILES_ONLY);
    // below code selects the file 
    int returnval = filechooser.showOpenDialog(this);
    if (returnval == JFileChooser.APPROVE_OPTION)
    {
        File file = filechooser.getSelectedFile();
        BufferedImage bi;
        try {
            // display the image in a Jlabel
            bi = ImageIO.read(file);
            jLabel1.setIcon(new ImageIcon(bi));
        } catch(IOException e) {
           e.printStackTrace(); // todo: implement proper error handeling
        }
        this.pack();
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM