이미지를 표시하려면 ImageIcon 클래스를 사용하여 URL에서 이미지를 로드할 수 있습니다. 그런 다음 ImageIcon을 JLabel에 추가한 후 JPanel에 추가할 수 있습니다.
다음은 URL에서 이미지를 로드하고 JPanel에 표시하는 방법에 대한 예입니다.
import java.awt.Image; import java.awt.image.ImageIcon; import java.net.URL; import javax.swing.ImageIcon; import javax.swing.JLabel; import javax.swing.JPanel; public class DisplayImage { public static void main(String[] args) { // Create a panel to hold the image JPanel panel = new JPanel(); // Load the image from a URL Image image = Toolkit.getDefaultToolkit().getImage(new URL("http://www.example.com/image.jpg")); // Create an ImageIcon from the image ImageIcon icon = new ImageIcon(image); // Create a label to hold the image icon JLabel label = new JLabel(icon); // Add the label to the panel panel.add(label); // Add the panel to the frame JFrame frame = new JFrame(); frame.getContentPane().add(panel); // Set the size of the frame frame.setSize(400, 400); // Display the frame frame.setVisible(true); } }
이 코드는 주어진 URL에서 이미지를 로드하고 JPanel에 표시합니다. 이미지의 크기는 JPanel의 크기에 따라 결정됩니다.
위 내용은 Java JPanel의 URL에서 이미지를 어떻게 표시합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!