Como inserir imagens num programa em java

Como q eu faço pra exibir uma imagem (normal, jpg, jpeg, etc, salva no meu computador, no diretorio do programa) num programa???

O que vc quer dizer com ‘exibir’?

Programa com interface gráfica?

Você pode usar esse painel:
http://www.guj.com.br/posts/list/56248.java#295271

Tente usar um JLabel.

Abraços.

Exemplo do JLabel com um Icon

// Fetch icon
    Icon icon = new ImageIcon("icon.gif");
    
    // Create a label with text and an icon; the icon appears to the left of the text
    JLabel label = new JLabel("Text Label", icon, JLabel.CENTER);
    
    // Create a label with only an icon
    label = new JLabel(icon);

This example adds or replaces the icon in an existing JLabel component: 
    // Add an icon to an existing label
    label.setIcon(icon);