加载了图片的窗口

import java.awt.*;
import javax.swing.*;
 class image extends JFrame
{
	image()
	{
	super("送给你");
	setDefaultCloseOperation(3);
	Icon imag=new ImageIcon("0.jpg");
	JLabel l=new JLabel(imag);
	JScrollPane s=new JScrollPane(l);
	getContentPane().add(s);
	setSize(500,500);
	setVisible(true);
	}
}
class  lianxi4
{
	public static void main(String[] args) 
	{
		image a=new image();
	}
}

加载了图片的窗口_第1张图片

你可能感兴趣的:(加载了图片的窗口)