我正在开发一个图像编辑应用程序,所以想显示由 选择的图像JFileChooser
,那么最好的方法是什么,以便它可以显示所有格式jpg
,png
等等gif
。OpenButton
用于调用文件选择器。
private void OpenActionPerformed(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();
}
}
}