I would like to know how to print an ArrayList inside a JOptionPane, I leave below the code I am using but it is not working:
import java.util.ArrayList;
import javax.swing.JOptionPane;
public class repositorioPessoasLista{
ArrayList<pessoa> pessoas = new ArrayList<pessoa>();
pessoa Pessoa = new pessoa();
public void inserir(){
Pessoa.setNome(JOptionPane.showInputDialog("Digite o nome da pessoa: "));
Pessoa.setCPF(JOptionPane.showInputDialog("Digite o CPF da pessoa: "));
Pessoa.setIdade(Integer.parseInt(JOptionPane.showInputDialog("Digite a idade da pessoa: ")));
pessoas.add(Pessoa);
}
public void pesquisar(int i){
for(i=0 ; i < pessoas.size() ; i++){
JOptionPane.showMessageDialog(null ,pessoas.get((i)));
}
}
}
and here is the class where I call the search function with a ActionListener
import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JOptionPane;
public class janela extends JFrame {
static repositorioPessoasLista rep = new repositorioPessoasLista();
private static final long serialVersionUID = 1L;
protected static JFrame frame;
protected static JMenuBar barraMenu;
protected static JMenu Cadastro;
protected static JMenu Pesquisa;
protected static JMenu Excluir;
protected static JMenu Sistema;
protected static JMenuItem Professorbt;
protected static JMenuItem Aluno;
protected static JMenuItem ProfessorPesqbt;
protected static JMenuItem AlunoPesq;
protected static JMenuItem ProfessorExc;
protected static JMenuItem AlunoExc;
protected static JMenuItem Sobre;
protected static JMenuItem Sair;
public static void main(String[] args) {
//FRAME
frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(500,400);
frame.setLocation(400,300);
//BARRA DE MENU
barraMenu = new JMenuBar();
Cadastro = new JMenu("Cadastro");
Pesquisa = new JMenu("Pesquisa");
Excluir = new JMenu("Exluir");
Sistema = new JMenu("Sistema");
barraMenu.add(Cadastro);
barraMenu.add(Pesquisa);
barraMenu.add(Excluir);
barraMenu.add(Sistema);
//ITENS DE MENU
Professorbt = new JMenuItem("Professor");
Aluno = new JMenuItem("Aluno");
ProfessorPesqbt = new JMenuItem("Professor");
AlunoPesq = new JMenuItem("Aluno");
ProfessorExc = new JMenuItem("Professor");
AlunoExc = new JMenuItem("Aluno");
Sobre = new JMenuItem("Sobre");
Sair = new JMenuItem("Sair");
Cadastro.add(Professorbt);
Cadastro.add(Aluno);
Pesquisa.add(ProfessorPesqbt);
Pesquisa.add(AlunoPesq);
Excluir.add(ProfessorExc);
Excluir.add(AlunoExc);
Sistema.add(Sobre);
Sistema.add(Sair);
frame.add(barraMenu);
frame.add(barraMenu, BorderLayout.NORTH);
frame.setVisible(true);
//BOTAO SAIR
Sair.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
int retorno = JOptionPane.showConfirmDialog(null, "Deseja sair ?"," ",JOptionPane.YES_NO_OPTION,JOptionPane.QUESTION_MESSAGE);
if(retorno == JOptionPane.YES_OPTION){
System.exit(0);
}
}
});
//BOTAO SOBRE
Sobre.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
JOptionPane.showMessageDialog(null,"SOBRE SISTEMA\n\nDesenvolvedor: Douglas Sabino\nVersão: 1.01(BETA)");
}
});
//BOTAO CADASTRAR
Professorbt.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
rep.inserir();
}
});
ProfessorPesqbt.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
rep.pesquisar(0);
}
});
}
}