我给你一个frame现实图片的小例子:
public void showPic() {
JFrame f = new JFrame();
f.setSize(400, 300);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.setTitle("绘制图片");
JLabel l = new JLabel(new ImageIcon("C:\\img.jpg"));
f.add(l);
f.setVisible(true);
}
你说的点击按钮打开选择文件窗口可以用JFileChoose控件:
jfc.showOpenDialog(jf);//在jf这个JFrame对象中打开jfc这个文件选择窗口
String filename=jfc.getSelectedFile().getAbsolutePath();//获取选中文件的绝对路径
转移文件可以使用这个方法:
File file = new File("C:\\img.jpg");\\旧地址
file.renameTo(new File("C:\\新地址\\img.jpg"));\\新地址