1. StackOverflowError when serializing an object in Java stackoverflow.comI am writing an application in Java using Swing. I am trying to implement functionality to save and load simulation states for at simulation i am running. The entire simulation is ... |
2. java.lang.StackOverflowError coderanch.com |
3. stackOverflowError? coderanch.comimport javax.swing.*; import java.awt.event.*; import java.awt.*; import javax.swing.border.*; public class GUI_Vis_StudInfo extends JFrame{ JLabel nr, forn,ettn,sOk; JButton btnSok; JTextField txtSok; JRadioButton rbtnNr, rbtnForn, rbtnEttn; public GUI_Vis_StudInfo() { Container flate = getContentPane(); flate.setLayout(new GridLayout(5,4)); ButtonGroup gruppe = new ButtonGroup(); rbtnNr = new JRadioButton(); rbtnForn = new JRadioButton(); rbtnEttn = new JRadioButton(); gruppe.add(rbtnNr); gruppe.add(rbtnForn); gruppe.add(rbtnEttn); nr = new JLabel("StudNr :"); forn = new ... |
4. StackOverflowError coderanch.com |
5. StackOverflowError coderanch.com |
6. java.lang.StackOverFlowError coderanch.comHi I have a java program, and just when i started it appears this: Exception in thread "AWT-EventQueue-0" java.lang.StackOverflowError at sun.awt.Win32GraphicsConfig.getBounds(Native Method) at sun.awt.Win32GraphicsConfig.getBounds(Win32GraphicsConfig.java:215) at java.awt.Window.init(Window.java:393) at java.awt.Window. |
7. StackOverflowError java-forums.orgI have develpoed swing desktop application using netbeans IDE 6.5.1 it is running in netbeans IDE, Now i want to run this application as jar file. i have taken jar, but i could not run this application in windows and Linux it shows error like this --Exception in thread "AWT-EventQueue-0" java.lang.StackOverflowError plz give me solution. with regarads selva |
8. stackoverflowerror java-forums.orgstackoverflowerror The error is only showed when i click/choose the combo box,please help me to solve this This is my code:(cbkamar is the combo box) package astri; import java.sql.*; import javax.swing.JOptionPane; import java.lang.String; import javax.swing.table.DefaultTableModel; import java.util.Vector; /** * * @author Adi */ public class Penghuni extends javax.swing.JFrame { /** Creates new form Penghuni */ public Penghuni() { initComponents(); ... |
9. StackOverflowError when hiding the first of two Swing GUIs? java-forums.orgHello there all, My basic problem is this; I have an object called GUI that has a few methods to build itself with a simple title, and then three methods; Display, Hide and Close. I don't really need to explain what they do. The problems arise when I try to call Hide(). For some reason after calling Display() it doesn't simply ... |