Botao chama tela

como faço em netbeans para meu botao chamar outra tela
obrigado

Vê se esse codigo pode te ajudar.
Espero respostas.

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;

import javax.swing.*;

public class Resposta {
JFrame j2 = new JFrame(“Janela 2”);

public Resposta(){
	JFrame j1 = new JFrame("Janela 1");
	j1.setSize(200,50);
	j1.setLocation(350,250);
	JButton b = new JButton("Clique");
	b.addActionListener(new ActionListener(){
		public void actionPerformed(ActionEvent e){
			j2.setSize(200,50);
			j2.setLocation(400,300);
			j2.setVisible(true);
			j2.addWindowListener(new WindowAdapter(){
				public void windowClosing(WindowEvent we){
					j2.setVisible(false);
				}
			});
		}
	});
	j1.add(b);
	j1.setVisible(true);
}

public static void main(String args[]){
	Resposta r = new Resposta();
}

}