Using GUI Via JOption Pane With Program
Sep 22, 2014
We needed to use a GUI via JOptionPane with our program. So that we may turn out programs in as executable jar files. However, I have never used it. Here is my problem and code:
package waitingroomlinkedlist;
import java.util.Scanner;
import javax.swing.JOptionPane;
public class WaitingRoomLinkedList {
public static void main(String args[]) {
boolean done = false;
String inputFirst;
String inputLast;
String[] choices = {"First Name", "Last Name", "Quit"};
[Code] ....
Now for some reason I am getting an error when trying to create a new instance of the Person class and pass inputFirst and inputLast. Its telling me that I have not initialized inputFirst or Last. When I allow it to initialize it sets inputFirst = null; and so forth with inputLast. All I want to do is pass the two Strings to my constructor in my Person class.
View Replies
ADVERTISEMENT
Feb 10, 2015
while using JOption Pane. So my output for the code is correct, however, it keeps repeating the dialog.
public static void main {
String y = "";
String aString;
int a, sum;
double average;
int count=0;
[code]....
My output for the first input ends up like this:
You have enter 1 as integer.
Sum = 1
Average = 1.0
So far so good....however when I add another input.
You have enter 1 as integer.
Sum = 1
Average = 1.0
You have enter 1 as integer.
Sum = 2
Average = 1.0
What I want is the You have enter, sum,average to show up once while still adding sums and average.I tried moving string y out of the while loop and used if statement but to no avail.
View Replies
View Related
Nov 7, 2014
Using JOptionPane,ask for 10 numbers from the user.Use an array to store the values of these 10 numbers.Output on the screen the number with the greatest value.
View Replies
View Related
Sep 6, 2014
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import java.sql.*;
class Stock extends JFrame implements ActionListener
[code]....
well everything seems to be working fine only the scroll pane is not working.
View Replies
View Related
Mar 9, 2015
I want to have a button that will include another node beyond the text and image that are part from the Button. This node as example will be a circle that I will change his color from gray to green if the button was pushed.
I try to do this with Background / BackgroundFill with no success
I tried to get access to the Pane / Region of the Button, but I can't find a way to do it.
View Replies
View Related
Sep 5, 2014
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import java.sql.*;
class Stock extends JFrame implements ActionListener
[Code] ....
Everything is fine but the scroll pane is not working!
View Replies
View Related
Feb 23, 2015
I am struggling to get a way to click within a Pane and select a Line. The Line has been drawn by the user and there can be numerous.
For example if you select a Vertex I can just ask if it contains the point. How would you do this for a line?
View Replies
View Related
May 14, 2015
I have a pane with numerous comboboxes. Each ComboBox must perform an action when the mouse button is clicked on the ComboBox (OnMouseClicked). I have written a function that operates on a particular ComboBox, but I want to generalize it to operate on any of the CombBox objects clicked. I think the function should resolve the CombBox object within the function itself, and perform the operations on that ComboBox. But, I don't know how to get the ComboBox from within the function itself.
I have tried viewing the ComboBox documentation, but there doesn't seem to be a method that lets a clicked ComboBox notify the OnMouseClicked action which ComboBox has been clicked. How I go about identifying the clicked ComboBox within the OnMouseClicked function?
View Replies
View Related
May 15, 2014
I have my below Swing GUI code in which I want to read and display some contents present in text file say (test.txt) which is located in my local disk (C: est.txt). My pane tab 2 is divided into two halves horizontally. How can I read and write the test.txt file contents under the tab tab2 in the first half of the pane(where currently it is 2 written)?
Sample test.txt present in my local hard disk location
username:test1
Password:test1
DataBasename: testDB
CODE FOR TABBED PANE
import javax.swing.*;
import java.awt.*;
public class SplitPaneExp {
public static void main(String[] args){
Runnable r = new Runnable() {
public void run() {
JFrame frame = new JFrame("WELCOME");
[Code] ......
View Replies
View Related
Mar 25, 2015
I'm dealing with, change the content pane color of jFilechooser. Color has been changed but the problem is when I open the subdirectory leads errors; Note : It also trigger error when I set default directory; like chooser.setCurrentDirectory(file);
The following error is the result:
Exception in thread "AWT-EventQueue-1" java.lang.NullPointerException
at javax.swing.plaf.metal.MetalFileChooserUI$IndentIcon.getIconWidth(MetalFileChooserUI.java:912)
at javax.swing.SwingUtilities.layoutCompoundLabelImpl(SwingUtilities.java:961)
at javax.swing.SwingUtilities.layoutCompoundLabel(SwingUtilities.java:888)
at javax.swing.plaf.basic.BasicLabelUI.layoutCL(BasicLabelUI.java:94)
at javax.swing.plaf.basic.BasicLabelUI.getPreferredSize(BasicLabelUI.java:239)
[Code]...
Following is the code base
import javax.swing.*;
import javax.swing.*;
import javax.swing.border.EmptyBorder;
import javax.swing.filechooser.*;
import javax.swing.event.*;
import javax.swing.plaf.*;
import javax.swing.plaf.basic.*;
[Code]...
View Replies
View Related
Nov 23, 2014
I would like to import database to the Java pane and connect objects to each other and want to display their information as visually. How can i do.
View Replies
View Related
Mar 22, 2014
The program below compiles and functions correctly for the most part. It is supposed to be a simple GUI Text Editor with Edit and Format functions. The content pane is supposed to be a scroll pane, however no matter how much I type into the editor, the scroll bar does not appear. Also, the none of the functions under the "Edit" menu work.
Java Code:
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import java.io.*;
import java.util.*;
import java.util.StringTokenizer;
import java.util.regex.Pattern;
/**
* A simple text editor. It creates and displays the GUI Text Editor.
*/
public class TextEditor extends JFrame implements ActionListener
[Code] .....
View Replies
View Related
Dec 12, 2014
I am checking how to do following task.
01. pickup the selected text file and read the line by line and output the text in to visual text pane.
what i did:.
01. I wrote code that read the text file and output in to jave console/ also some of the interface.
the code read txt file:
Java Code:
String fileName = "C:/Users/lakshan/Desktop/lawyer.txt";
File textFile = new File(fileName);
Scanner in = new Scanner (textFile);
while(in.hasNextLine()){
[code]....
so it will read any text file dynamically and output to the text pane in interface. I think scanner code must be execute after the select the file from the browser and set the scanned result in to variable. then later out put the var as string in some jswing component?
View Replies
View Related
Mar 16, 2014
i want create little program which enter the number, ant program says triangle exist or not. So code :
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
[code]...
So when i put first num like 1, next num like 2 and next num like 100 , program says Triangle exist.
View Replies
View Related
Apr 16, 2014
Have written a program to open Excel sheet from java program.Below line works fine.
Process p = Runtime.getRuntime().exec(new String[]{""C:Program Files (x86)Microsoft OfficeOffice12Excel.EXE"","C:UsersRASHPA~ 1.ORAAppDataLocalTempExport_xl420314062726 9379706.xls"});
But below code gives error i.e. Executable name has embedded quote, split the arguments
String path = "C:Program Files (x86)Microsoft OfficeOffice12Excel.EXE";
String file = "C:UsersRASHPA~1.ORAAppDataLocalTempEx port_xl4203140627269379706.xls";
Process p = Runtime.getRuntime().exec(new String[]{"""+path+""" + ","+file});
I am using java 1.6.
View Replies
View Related
Dec 17, 2014
In a project for school. I have a program that links several GUI's as a menu based program. What I am trying to accomplish is when one of the previous GUI's is closed that it doesn't terminate the entire program. There is a lot of classes in the entire project so I'd prefer not to paste all the code here, but if it is necessary I will do so.
View Replies
View Related
Feb 20, 2014
I'm creating a program that will compile and run another java program:Lets say I have a program in directory
D:HelloWorldsrc
and compiled program will be in
D:HelloWorldin
inside src and bin is a folder hello (that's a package)
package hello;
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World");
System.out.println("Hello World");
}
}
This program will be run by another program (that's the program that I am creating).Here is the code of my program:
package runnercompiler;
import java.io.IOException;
import java.io.InputStream;
import java.util.logging.Level;
import java.util.logging.Logger;
public final class RunnerCompiler {
[code]....
View Replies
View Related
Feb 15, 2014
I'm working in a GUI program, but I'm not going to put the code because there is a lot of code and files. Instead, I will try to put it an example.
Let say:
I'm working in a GUI program that ask form the user to enter two number's. When the user press at the calculate button. It will show up the output. However, the program won't exit unless the user press at red (X).
int x = user_Input1;
int y = user_Input2;
int total = x + y; //
JOptionPane.showMessageDialog(null, total);
I know that there will be a (total) now, so my question is here how can I reset all the calculation and have a new total that will show up when the user enter two number's again.
View Replies
View Related
Jun 18, 2014
I have searched the internet for about 2 days and now i'm posting this. I'm trying to make a program that will let me enter "1" to show how many movies I have watched and press "2" for a new one. The problem I ran into is I enter 2 then when I enter 1 it said "you have watched 0 movies". I know what the problem is I just don't know how to retype it. here is the code.
package stuff;
import java.util.*;
public class thing {
[Code].....
View Replies
View Related
Dec 14, 2014
I just finished a tutorial on youtube that covers the basic java, and now i want to try and make a game / program thing, only problem is that i have never worked with graphics before (i have tried to make ovals, rectangles, and other things with the paint method tho )
I know how to make a jframe and a jpanel, and i feel like i can make a simple "game" (not a complicated one, just a simple one with a guy walking around on the screen) in fact i have already make a such game, where you are a oval walking around on the screen, so thats not really my problem.
My problem is that i want to draw an image on the screen that can walk around instead of the oval, but how to do that. I have made a new project and set up the jframe and jpanel, and my code looks like this:
(main)
import javax.swing.JFrame;
public class main_class {
public static void main(String[] args){
JFrame f = new JFrame();
f.setTitle("title");
f.setVisible(true);
f.setSize(800,600);
[code]...
but once again, i get a blank jframe with no image and no "test" string . How i can display images on the screen?
View Replies
View Related
Feb 7, 2015
I have done a rock, paper, scissors program, but it only executes once. How do I make the program repeat so you can play multiple times?
import java.util.Scanner;
import java.util.Random;
public class RockPaperScissors {
public static void main(String[] args) {
int A;
Scanner input = new Scanner(System.in);
Random random = new Random();
[code]....
View Replies
View Related
Mar 25, 2014
I am new on this and I will be working in a gpa and average program. This is my code so far: Every time that I try to add the gpa part it gives me errors or just duplicates whatever I've in average and displays it in gpa
/**
* This program shows a database of students in a school.
* It gathers information as name, classes, grades, and calculates average and gpa average.
*
*/
import javax.swing.JOptionPane;
[code]....
View Replies
View Related
Oct 15, 2014
In this exercise you will write a program that estimates the value of π. Pretend that we are looking at a dartboard in the picture above. If the square is 2units wide and 2 units high, the radius of the circle within the square is 1 unit. Then the area of the circle is π*r2 = π*12 = π. The area of the square will be 2*2 = 4.
The estimation of π will work by randomly "throwing darts" at the dartboard. We will assume that every dart will hit the board but the location of that strike will be random so some darts will land inside the circle and some will land outside the circle. The calculation of π is then the ratio of the number of darts that land inside the circle to the total number of darts, multiplied by 4. Note that as we increase the number of darts used in the simulation, the accuracy improves.
Follow the steps to complete the program:
1.Declare variables that represent x, y coordinates of a dart, the distance of the dart from the origin, the number of darts that land inside the circle, and the total number of darts.
2.Read in the total number of darts (N) from the user and create an instance of the Random class.
3.Create a loop that runs N times. Inside the loop, you will use the nextFloat() method of the Random class to create x, y coordinates randomly, and then compute the distance of the dart from the origin. Determine whether the dart lands inside or outside of the circle.
4.Compute π using the estimation algorithm.
5.Run the program with increasing numbers from 100 to 100,000,000 and observe the accuracy of π.
View Replies
View Related
Mar 24, 2014
So the question asks us to use a sentinel value to end a program, but the sentinel value is 999, but the while loop only recognises strings...
static Scanner console = new Scanner (System.in);
public static void main (String[] args)
throws FileNotFoundException
{
PrintWriter outfFile = new PrintWriter ("Invoice.txt") ;
String firstItem;
String item ;
int price;
[Code] .....
View Replies
View Related
Dec 10, 2014
A file has the data of the subjects and name of professors. The file contains line for each subject. The line starts with professor Name followed by the Subject name.
Harry Williams Advanced DBMS
James H Computer Networks
Sasha Ben Artificial Intelligence
Harry Williams Software Engineering
Palbo Kastro Formal Languages
Alex W Advanced SE
James H Operating System
Harry Williams Theoretical Foundation
Write a program with setter getter method to read the file, and then write a class to store several professors in a hashset (Single Key and Multiple Values).The program should be able to display all the professors in the set and allow the user to search for a professor.
Input:
Professor Name: James H.
Then the Output will be:
Subjects Taken by the professor: Computer Networks, Operating System.Display No Classes available if the professor name does not exists .
View Replies
View Related
Aug 22, 2014
This program will compile. Yet once i run it it immediately terminates itself....
import javax.swing.*;
import javax.swing.border.*;
import java.awt.*;
public class myImageIcon extends JFrame{
[Code] .....
View Replies
View Related