0
int result = JOptionPane.showConfirmDialog(null, "Do you want to continue the program?",null, JOptionPane.YES_NO_OPTION);
if (result == JOptionPane.NO_OPTION) {
System.exit(0);
}
if (result == JOptionPane.YES_OPTION) {
// What do i put here to run my program again?
}
Ben GUI'leri ile çalışma tavsiye etmem açık Çerçeveler kapatmak zorunda olduğunu düşünebiliriz Döngüleri gibi. – Natecat