import java.awt.*;
import javax.swing.*;public class Test {
public static void main(String args[]) {
Toolkit kit = Toolkit.getDefaultToolkit();
JWindow theWindow = new JWindow();
JLabel theLabel = new JLabel(new ImageIcon("a.jpg"));
theLabel.setBorder(BorderFactory.createRaisedBevelBorder());
theWindow.getContentPane().add(theLabel,BorderLayout.CENTER);
theWindow.setLocation(280,180);
theWindow.setSize(400,300);
theWindow.show();
}
}