Java GUI ActionListener - Determine Factors Of Input Placed At Number Text Field

Oct 12, 2014

I just started Java a few days ago and I'm having trouble with ActionListener..

Here are my codes so far , i'm having trouble with the

btnDetermineAction10686696_842067395825457_2521361553839739125_n.jpg:

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
 
public class NumberAnalyzer extends JFrame{
private JButton btnDetermine, btnClear;
private JTextField txtNumber, txtFactors, txtPrime;
private JLabel lblNumber, lblFactors, lblPrime;
private JPanel pnlNumber, pnlNumber1,

[Code] ....

The output should be the one in the picture:

Input is placed at the NUMBER text field.

Identify its factors, write it at FACTORS text field.

Determine if it is prime. If prime, output at PRIME text field is “Yes”, “No” otherwise.

View Replies


ADVERTISEMENT

Determine If User Input Is Fibonacci Number Or Not

Oct 20, 2014

Part A: While Loop Program

Write a program that detects Fibonacci numbers. Prompt the user to input a positive integer. Upon input, the program will determine if the number is either a Fibonacci number or not. If a Fibonacci number, then the order of the number in the sequence must be output. If not a Fibonacci number, then the Fibonacci numbers above and below it (including their order in the sequence) must be output. Once it finishes, the program will prompt the user for a new number. The program will exit if the user enters a string (such as “quit”) instead of an integer. Use the sample output file, fib-seq-det.txt, to view a sample session

This is my project, I wrote a programs that tells you if the input number is a fibonacci number or not. For some reason it only works for some Fibonacci numbers but not all of them.

import java.util.Scanner;
public class While
{
public static void main(String[] args) {
System.out.println("Welcome to the Fibonacci Sequence Detector
");
Scanner in = new Scanner(System.in);
System.out.print("Please input a number for analysis: ");
int input = in.nextInt();

[Code] ....

View Replies View Related

Factors Of Number Up To 10

Apr 2, 2015

Finding Factors of Numbers up to 10, but ending with infinite loop

class Factors
{
public static void main(String arg[]) {
int i,j;
for(i=1;i<=10;i++){
System.out.println("Factors of " + i + " are: ");
for(j=1;j<=i;i++) {
if(i%j ==0) System.out.print(j+" ,");
}
}
}
}

View Replies View Related

Calculate The Factors Of A Positive Integer Number

Mar 16, 2014

lines 7, 8, &12 "primes" are underline in red (prime cannot be resolved) is what pops up when i hover over the x's.

i don't get why that is.

package assignment7;
public class Exercise3
{
public static void main(String[] args)
{
Prime.setSize(1000);
for (int p = Primes.next(); p < 30; p = Primes.next())

[Code]...

View Replies View Related

Calculate Factors Of Positive Integer Number

Mar 17, 2014

Lines 7, 8, &12 "primes" are underline in red (prime cannot be resolved) is what pops up when i hover over the x's.

I don't get why that is.

Java Code :

public class Exercise3
{
public static void main(String[] args) {
Prime.setSize(1000);
for (int p = Primes.next(); p < 30; p = Primes.next()) {
int n = (int)Math.round(Math.pow(2,p)) - 1;
System.out.printf("%d 2^%d-1%d", p, p, n);
if (Primes.isPrime(n))

[Code] ....

View Replies View Related

Java GUI - Adding Text Field And Label

May 19, 2014

I just want to add a text field and a label next to it that says "Hourly Wage".

Also, when I run this in Xcode, it reports back with "Shell Script Invocation Error" "Command usr/bin/java failed with exit code 1".

Here's my program:
 
package summerIncome;
import java.util.Scanner;
 public class SummerIncomeCalculator {
public static void main(String[] args) {
jFrame frame = new Jframe("Summer Income Calculator");
frame.setSize(400,300);

[Code] .....

View Replies View Related

Java Servlet :: How To Display Text Field Value As Jasper Report Parameter

Oct 24, 2012

I created a jsf page inside my ADF project. Inside I have a button and a text field. If i press button my servlet is activated. It returns a jasper report in pdf format. Now I would like to display my text field value as a jasper report parameter. So this is a part I don't know how to do. How do I get a value of my text field inside servlet? After this I know how to pass it to report.

View Replies View Related

User Enter A File On Text Field And Display Its Hex Representation In Text Area

Apr 17, 2015

I'm supposed to write a GUI application letting the user enter a file on the text field and display its hex representation in a text area and vice versa.

Here's my code:

/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package hexconvertor;
import java.util.*;
import java.io.*;
public class HexConvertor extends javax.swing.JFrame {

[Code] .....

It's not doing anything, I don't understand why.

View Replies View Related

Swing/AWT/SWT :: JTextField - How To Remove Text When User Clicks On Text Field

Jan 28, 2014

I have a textField in which I have text in. The text is enter customer name. I would like for this text to disappear whenever the user clicks on the textField to enter a customer name. I am using the automated swing gui builder in NetBeans. Is their some sort of feature for this under properties of the text field? If not then what are my other options?

View Replies View Related

Clicking On TextField Will Show Some Required Text Under Text Field

Mar 15, 2015

I am trying to run a simple program in which on clicking on the TextField will show some required text under the Text Field .Here is my code:
 
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
 class Awt
{
public static void main(String...s)

[Code] ....

I am expecting the on clicking anywhere inside the text field should show me the Text : "Mouse Clicked" . But i am getting this error:

Awt.java:77: error: cannot find symbol
tf.f.setText("Mouse Clicked");}
^
symbol: variable f
location: variable tf of type Awt
1 error

View Replies View Related

Swing/AWT/SWT :: Cannot Get ActionListener To Change JLabel Text

Apr 24, 2014

I am trying to write an application where if you click and hold down on 1 button and move the mouse to another button and release the text on the 2 buttons should be switched around.I have a print line so I can se the text are supposed to get switched around but it is just not happening in the GUI.

I attached all my code in case the flaw was to find somewhere else in the code, but the functionality I am working on is the lines 76 to 121.

import javax.swing.BoxLayout;
import javax.swing.JFrame;
import javax.swing.JButton;
import javax.swing.JOptionPane;
import javax.swing.JPanel;

[code]....

View Replies View Related

How To Get Text From Password-Field

Nov 12, 2014

i need to develop a java program in which it will ask the user "Username" and "Password" and by which it will login to a wesite.

I have developed a GUI in which the username should be entered in the User "JTextfield" and Password in Password "JPasswordField". I need to make sure that password should not be displayed in the GUI. but I didnt find a way to parse the string (char) entered in the "JPasswordField" to the website.

It is always passing a 'null' character! I tried to search in internet and i found that it wont be able to pass the passwordfield characters but you will be able to check in the main function itself by comparing with another char array in the main program itself whether the password entered is correct or not.

Is there any alternate way for this?

Objective : Parse the password (which is not displayed in the GUI) to a website or some other function where it will use it

View Replies View Related

Actionlistener For Calculator / Button Are Created Within A For Loop For Number 1 To 9

Mar 8, 2014

coding the action listener for my button (btBody) which create button displaying 1 to 9 in a nested for loop; the button should allow the user to click on them and to display the number clicked on in a JTextField;my code;

import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class EX_7_2 extends JFrame
{
public EX_7_2()
{
setLayout(new BorderLayout(5, 10));

[code]....

View Replies View Related

Multiple Colors For A Text Field

May 25, 2014

I have a question about JTextArea colors. When i set the color to blue and then write something on the JTextArea (JTextArea.append) and then set it back to black everything will be black. How can i solve that? Like in Notepad++ or Eclipse when you write keywords in a JTextArea (where you write your code) only some words change color.

This is my code:

// All the imports
public class whatever extends JFrame {
JTextArea a = new JTextArea();
public whatever() {
super("Title");
add(a);

[code]...

View Replies View Related

Complex Formatting Within A Text Field

Apr 30, 2015

I'm trying to figure out a good way to allow my users to have some formatting options within a text box in my application. Ultimately, they need to be able to have text that is alternating between two separate fonts, and ideally could have both italicized and bolded words as well.

View Replies View Related

Show Pop When Focused On Any Button Or Text Field

Jan 15, 2014

Coding to show pop when focused on any button or text field...i want to show inf pop when we take mouse cursor on any button or field..want coding to be written in action performed in netbeans....

View Replies View Related

How To Display New Panel With Text Field And Label It

Apr 19, 2014

I want to display a new panel with a text field and a label in it, and add the text from that textfield to an array list each time i press enter. here is what i am trying to do:

public JPanel startStateNoPanel(){
startStateNoPanel = new JPanel(null);
startStateNoPanel.setBackground(Color.YELLOW);
stateNo = new JLabel();
stateNo.setText("Enter Start State Number: ");
stateNo.setBounds(5,40,200,20);

[Code]...

Here is my method to add Panel to Action Panel which is further added to the Frame

public void addPanel(JPanel panel, String name){
ActionPanel.add(panel, name); // there is the card layout on action panel
}

symbolCountPanel is a panel which consists of a text field to take numberOf alphabets

if((symbolCountPanel.isShowing()) && (ex.getSource() == symbolCountF)){
if(!isTextFieldEmpty(symbolCountF)){
new SwingWorker<Void, Void>() {
protected Void doInBackground() throws Exception {
AlphabetCountF.setText(symbolCountF.getText());
setNumberOfAlphabets(Integer.parseInt(symbolCountF.getText())); // setting Number of Alphabets

[Code]....

View Replies View Related

How To Compare Contents Of Text Field And DAT File

Sep 30, 2014

So basically I have this alpha.dat file which stores data submitted when I execute the alpha class and here I have a AWT textfield which reads a password from user. I have another class called beta and I have another AWT textfield in it which also reads the same password from user. How do I compare both passwords?(I know I need both classes to refer to alpha.dat but how do I compare both textfields in different classes)

View Replies View Related

Action Event - How To Implement Button And Text Field

May 9, 2015

I want to use this class and method with all of my buttons and text fields. My program contains 1 push button that adds questions and answers to a test, 2nd button that starts a test, a 3rd button that scores the test, and a text field that enters the user information. How would this work? I know how to create questions and answers, start a test, and score a test it's just a matter of how to implement the button and text fields. I'll post the code that I have done so far.

See:

private class ButtonListener implements ActionListener{
public void actionPerformed (ActionEvent event)

with all of my buttons and text fields.

import javax.swing.JFrame;
public class TestingDriver
{
//-----------------------------------------------------------------
// Creates and displays the main program frame.
//-----------------------------------------------------------------
public static void main (String[] args) {
JFrame frame = new JFrame ("Testing Program");
frame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);

[Code] ....

View Replies View Related

Insert Watermark In Any Text-field Of Registration Page

May 19, 2014

code used to create watermark in text-field of any registration page?

View Replies View Related

Button Click - Text Area Cannot Be Resolved Or Is Not A Field

Apr 30, 2014

In my application, some text should be added to a text area in response to a click on a button. So as an action listener to this class, I made another class which implements the ActionListener.

Inside this class, I have obtained the text which I want to be added to the text area. But the text area is in another class and for the action listener I wrote another class.

Now the problem is that when I try to add the text to the text area by the following line of code, it says that textArea_1 can not be resolved or is not a field.

Java Code:

ParentPanel.textArea_1.setText("Name:"+ncrarray[0]+"
Code:"+ncrarray[1]+"
Rank:"+ncrarray[2]); mh_sh_highlight_all('java'); What should I do about it?

Even if I try to write a method like the following in the class in which the text area is created, it gives the same error.

Java Code:

public void printTextArea(String text) {
textArea_1.setText(text);
} mh_sh_highlight_all('java');

The text area is present inside a constructor of the class. I am writing the method outside the constructor (ofcourse).

View Replies View Related

JSP :: Form With Text Field And Submit Button - Counter?

Oct 4, 2014

Trying a simple form with a text field and a submit button; the text field should start with zero and increment by 1 every time a user clicks it.

My HTML
<html>
<body>
<h2>JSP Counter</h2>
<form method="post" action="counter.jsp">
<input type="text" name="integer" value="0"/>
<input type="submit" value="Add 1" />
</form>
</body>
</html>

My JSP<%

String param = request.getParameter("integer");
try {
int i = Integer.parseInt(param);
i ++;
} catch (Exception e) {
}
%>

View Replies View Related

JSF :: Using Jquery Date Picker With Input Field In Bean

Aug 9, 2014

I have an bean vacationRequestBean with startdate and enddate of date field. I used jquery date picker in my index.xhtml for those fields. format is MM-dd-yyyy for date picker

<script>
$(function() {
$("#datepicker").datepicker();
});
</script>

and in xhtml

<h:inputText id="date" class="datepicker" value="#{vacationRequestBean.startdate }" >
<f:convertDateTime pattern="MM-dd-yyyy" type="date />
</h:inputText>

<h:inputText id="date" class="datepicker" value="#{vacationRequestBean.enddate }" >
<f:convertDateTime pattern="MM-dd-yyyy" type="date />
</h:inputText>

I am getting error as "<f:convertDateTime > Parent not an instance of ValueHolder". How to store the value selected using jquery date picker to bean on submitting the form.

View Replies View Related

JTextfield And Jtable - Get Users Input From Field To Table

Sep 13, 2014

I have project to get from users input like name,surname,to save to Jtable,i have table and jtextfiled but when user get input they don t save to table here is my code:

 Project.zip (33.54K)

public class Projektni extends JFrame {
public final JTextField ime = new JTextField(10);
public final JTextField prezime = new JTextField(10);
public final JTextField index = new JTextField(10);
public DefaultListModel podaci = new DefaultListModel();
public JList lista = new JList(podaci);
String kolone[] = {"ID","Name","Age"};

[Code] ....

View Replies View Related

Input 10 Integer Numbers Into Array And Determine Maximum Value Entered

Apr 22, 2015

a. Write a Java program to input 10 integer numbers into an array named fmax and determine the maximum value entered. Your program should contain only one loop, and the maximum should be determined as array element values are being input. (Hint: Set the maximum equal to the first array element, which should be input before the loop used to input the remaining array values.)

b. Repeat 1a, keeping track of both the maximum element in the array and the index number for the maximum. After displaying the numbers, display these two messages:

The maximum value is: _________
This is element number __________ in the list of numbers

Have your program display the correct values in place of the underlines in the messages.

c. Repeat 1b, but have your program locate the minimum value of the data entered.

I did parts a and b but for part see i just want to know if i did it correctly or not

import java.util.Scanner;
public class MinimumValueArray {
public static void main(String[] args) {
//Variable Declaration
Scanner keyboard = new Scanner(System.in);
int size = 10;

[Code] ,.....

When I run it i get this The minimum value is 0.0

The element that holds the value is 0 right away. is this right for the minimum or am i supposed to enter values and it will display the minimum value like in parts a and b wit the maximum? will the minimum just always be 0 or ?

View Replies View Related

Simple For Loop - Determine Factorial Of A Number Entered By User

Jun 28, 2014

I'm trying to learn Java and my current project is to write a short program to determine the factorial of a number entered by the user. I haven't looked. There may be a method that will do it, but I want to use a for loop specifically.

What I have compiles just fine. I'm actually pretty thrilled just with that. Here is what I have:

class factorial {
public static void main( String[] args) {
Scanner scan = new Scanner(System.in );
int num;
int product = 1;

[Code] ....

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved