About 1,060,000 results
Open links in new tab
  1. Java JFrame - GeeksforGeeks

    May 5, 2025 · JFrame in Java is a class that allows you to crеatе and manage a top-lеvеl window in a Java application. It sеrvеs as thе main window for GUI-basеd Java applications and …

  2. java - Setting JFrame position on screen and store properties

    Jun 7, 2013 · Concerning to "option.prop" file, at the moment the file is stored in my .jar parent folder, I would like to store it in the same folder of my .jar program, how can I do it? Thanks

  3. java - how can i make a simple store program - Stack Overflow

    Apr 3, 2022 · The below code is a real quick-and-dirty. It gets your desired result but I believe that your program is more suitable as a GUI application. JOptionPane is not the best way to get …

  4. JFrame basic tutorial and examples - CodeJava.net

    Jul 6, 2019 · JFrame is a Swing’s top-level container that renders a window on screen. A frame is a base window on which other components rely, such as menu bar, panels, labels, text fields, …

  5. Creating Frames using Swings in Java - GeeksforGeeks

    Feb 17, 2022 · In this article, we’ll see how to make frames using Swings in Java. Ways to create a frame: Methods: Way 1: By creating the object of Frame class (association) In this, we will …

  6. Java JFrame Example - Java Code Geeks

    Jun 6, 2014 · In this article, we include a Java JFrame tutorial through examples. We will discuss some of the main methods and how JFrame and other main classes like JPanel, JLabel, and …

  7. java - Putting everything into a JFrame - Stack Overflow

    You need to set up the JFrame first. JFrame frame = new JFrame("title"); Then, set the properties of the JFrame: frame.setSize(1280,720); //Sets the program's size …

  8. Store JFrame Size, Location using SerializationJava Demos

    Oct 19, 2012 · We can do it in Java and that's simple too, they store the location, size of the frame when user changes it. The software store the data either in Windows Registry or in the form of …

  9. Java JFrame - Making Main Windows - Java Made Easy!

    There are two ways of creating a Java JFrame, either by creating a variable that is the JFrame or by having our class be a subclass of JFrame. Let's start with creating a JFrame variable. Here …

  10. JFrame (Java Platform SE 8 ) - Oracle

    An extended version of java.awt.Frame that adds support for the JFC/Swing component architecture. You can find task-oriented documentation about using JFrame in The Java …

Refresh