import javax.swing.*;
import java.awt.*;public class c1_04_01
{
public static void main(String[] args)
{
JFrame frame=new JFrame("c1_04_01");
Container c=frame.getContentPane();
c.setLayout(null);
c.setBackground(new Color(248,244,178));
ImageIcon icon1=new ImageIcon("47496.jpg");
JLabel cp1=new JLabel(icon1);
cp1.setSize(1027,770);
cp1.setLocation(0,0);
c.add(cp1);
//ImageIcon icon2=new ImageIcon("");
//JLabel cp2=new JLabel(icon2);
//cp2.setSize(91,87);
//cp2.setLocation(150,50);
//c.add(cp2);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(1027,770);
frame.setVisible(true);
}
}
怎么加载图片啊??