Skip to main content
Stack Overflow
  1. About
  2. For Teams

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

Java GUI with JFrames

Today I started learning Java GUI and tried to create a simple window on my Ubuntu. I am using jre7 for now. I wrote code exactly from tutorial because from experience there are stuff that doesn't work even if it's correctly typed onto my screen. So, now I used thenewboston's first tutorial with Java GUI. Typed all syntax correctly, classes seems fine, no errors. He got window that was expected - mine only got blank window with no title and no text.

Screenshot with that
(source: scaleengine.net)

Code in JFrames.java file:

import java.awt.FlowLayout; // importē plūstošo skatu / default layout
import javax.swing.JFrame; // dod iespēju piekļūt pamata logu struktūrai
import javax.swing.JLabel; // ļauj rakstīt tekstu logos
public class JFrames extends JFrame {
 private JLabel item1;
 
 public JFrames() {
 super("The Title Of The Program"); // parāda title bar ar tekstu
 setLayout(new FlowLayout());
 
 item1 = new JLabel("This is sentence with something");
 item1.setToolTipText("This is tooltip on hover");
 add(item1); // pievieno logam šo lietiņu
 }
}

Please, ignore latvian comments, that's just for my reference. So I want to know - why my window appears blank?

Answer*

Draft saved
Draft discarded
Cancel

lang-java

AltStyle によって変換されたページ (->オリジナル) /