现在我对Java GUI中的文件有疑问,特别是: 我有一个文本框输入要生成的图片的名称,当我完成后,我点击"执行"按钮,然后它将进入我的文件夹的可用特定目录以获取该图像,之后在屏幕上显示该图像Java GUI,我不知道如何编写代码@@希望每个人都给我一个指南。先谢谢
更新
double a,b;
String s,s1,s2;
a=Double.parseDouble(nameimage.getText());
b=Double.parseDouble(cluster.getText());
if(h.getSource()==(perform))
{
//I do not know how to write the command for processing a selected image
}
}
}
/**
* @param args
*/
@SuppressWarnings("deprecation")
public static void main(String[] args) throws Exception
{
// TODO Auto-generated method stub
Zernike f=new Zernike();
f.setSize(1200,800);
f.show();
JLabel hinh =new JLabel (new ImageIcon("logo.jpg"));
f.add(hinh);
hinh.setBounds(20,20,130,130);
// get original image
JLabel oimage =new JLabel (new ImageIcon("C:/Users/HuynhT/JavaSpace/Interface_Z/images/01.jpg"));
f.add(oimage);
oimage.setBounds(50,270,200,200);
}
我想在Textbox" Name Image"中输入图像名称后,从"C:/Users/HuynhT/JavaSpace/Interface_Z/images/"
目录中获取图像。按下"执行"按钮,它将找到具有所需名称的图像并在GUI Java中显示