想要实现一个点击按钮后出现文件选择器,然后选择一张图片显示的效果,但是选择完图片没有出现,运行起来也不会报错,求高人指点!点击事件处理函数如下:publicvoidactionPerformed(ActionEventadd){JFileChooserfileChooser=newJFileChooser();/*fileChooser=newJFileChooser();*/intresult=fileChooser.showOpenDialog(this);if(add.getActionCommand().equals("xuan")){if(result==JFileChooser.APPROVE_OPTION){StringpicPath=fileChooser.getSelectedFile().getPath();picPath='"'+picPath+'"';picPath=picPath.replace("\\","\\\\");System.out.println(picPath);ImageIconicon=newImageIcon(picPath);jl2=newJLabel("这是一个Label",icon,JLabel.CENTER);jp1.add(jl2);}}elseif(add.getActionCommand().equals("que")){}}
添加回答
举报
0/150
提交
取消