hendra
count in java
1 Answer(s)      4 years ago
Posted in : Java Beginners

View Answers

May 27, 2009 at 3:35 PM


Hi Friend,

Try the following code:

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.sql.*;
class Form extends JFrame
{
JButton ADD;
JPanel panel;
JLabel label1;
final JTextField text1;
Form()
{
label1 = new JLabel();
label1.setText("Gender:");
text1 = new JTextField(20);

ADD=new JButton("Count");
panel=new JPanel(new GridLayout(2,2));
panel.add(label1);
panel.add(text1);

panel.add(ADD);

add(panel,BorderLayout.CENTER);
setTitle("FORM");

ADD.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent ae){
String value1=text1.getText();

Connection con = null;
String url = "jdbc:mysql://192.168.10.112:3306/";;
String db = "mydata";
String driver = "com.mysql.jdbc.Driver";
String user = "root";
String pass = "root";
try{
String i="";

Class.forName(driver);
con = DriverManager.getConnection(url+db, user, pass);
Statement st = con.createStatement();
ResultSet rs=st.executeQuery("SELECT count(id_sales) from userlist where gender='"+value1+"'");
while(rs.next()){
i=rs.getString("count(id_sales)");
System.out.println(i);
JOptionPane.showMessageDialog(null,"Count is: "+i);
}

st.close();

con.close();
}
catch(Exception e){
System.out.println(e);
}
}
});
}
}
class RetrieveCount
{
public static void main(String arg[])
{
try
{
Form frame=new Form();
frame.setSize(300,100);
frame.setVisible(true);
}
catch(Exception e)
{}
}
}
Thanks









Related Pages:
count in java - Java Beginners
, count of frmale is 20. what's code in java to select count from database where...count in java  Hello javamania.... i want to ask something like... is 20. i have JFrame Form(jTextField,jLabel,jButton), i want to get count
Count the character in java
Count the character in java  Write a java program to count....   Count characters by implementing thread import java.util.*; class CountCharacters { public static void count(final String str){ Runnable
Count Rows - JSP-Servlet
Count Rows  How to count rows in Java. Thanks
Ask java count
Ask java count  Good morning, I have a case where there are tables... | Java 1 | 10 | | b002 | beginner java | 5 | | b003 | advanced java book | 26 | | b004 | MySQL 1
count asterisk in a grid - Java Beginners
count asterisk in a grid  I need to write a program that uses a recursive method to count the number of asterisk in a square grid
Character count by while loop
Character count by while loop  Write the program to count the number...]; int count=0; for ( int i=0; i<third.length; i++){ if (ch==third[i]) count++; } boolean flag=false; for(int j=counter-1;j>=0;j--){ if(ch==third[j
Count Row - JSP-Servlet
Count Row  Hello all, Please I need your help on how to desplay... using java servlet and html form. Thanks for your good job!   Hi friend... db = "register"; String driver = "com.mysql.jdbc.Driver"; int count= 0
Count instances of each word
Count instances of each word  I am working on a Java Project that reads a text file from the command line and outputs an alphabetical listing of the words preceded by the occurrence count. My program compiles and runs
letter count problem - Java Beginners
letter count problem  i have a problem in my java coding to count two characters of a string. eg to count the letter "ou" in the string "How do you feel today?". The answer should be 5. but i still have error compiling
Hibernate criteria count.
Hibernate criteria count.  How do we count rows using criteria in hibernate?   Create hibernate configuration file (hibernate.cfg.xml... create Persistent class ?Hibernate uses the Plain Old Java Object (POJO) classes
Java Count Vowels
Java Count Vowels       In this program you will learn how to count vowels in a String. Here you... a variable- count = 0. Now, we have applied a loop here which will go up
Java: Example - Count occurences
Java: Example - Count occurences Problem: Count the number of times one string is found in another. //-------------------------------------------- count() int count(String base, String searchFor) { int len
Java program to generate the total count
Java program to generate the total count  I need a java program which would take a text file as an input and scans through it to generate the output. For Ex. : If the text file contains the following information: There is/are 3
Java count files in a directory
Java count files in a directory In this section, you will learn how to count... directory. But we have to count the number of files so we have initialized... main(String[] args) { File f = new File("C:/Text"); int count = 0
count the repeated character in one string
count the repeated character in one string  to find the how character occurrence in one String (for example the string is -java means there is 2...;counter<third.length;counter++){ char ch= third[counter]; int count=0
Java file line count
Java file line count In the section, you will learn how to count the number of lines from the given file. Description of code: Java has provide various... main(String[] args) throws Exception { int count = 0; File f = new File("C
how to count words in string using java
how to count words in string using java  how to count words in string...: "); String st=input.nextLine(); int count=0...()){ String token=stk.nextToken(); count
Count Active Thread in JAVA
Count Active Thread in JAVA In this tutorial, we are using activeCount() method of thread to count the current active threads. Thread activeCount() : Thread class provides you to check the current active thread by providing
Count characters from text file in Java
is a java code that count the occurrence of each character from text file. import...Count characters from text file in Java  At the "Count chracters fro mtext file in Java". I tried to run the code, but the error at the line have
Jsp count and java bean - JSP-Servlet
Jsp count and java bean  Please am on a project and i want to create a countdown timer that will have this format HH:MM:SS. Am working with jsp and java beans please somebody help.  Hi Friend, Try the following
JDBC Select Count example
: F:\jdbc>javac SelectCount.java F:\jdbc>java SelectCount COUNT...JDBC Select Count example In this tutorial  we will learn how work COUNT()  in query with mysql JDBC driver. This tutorial  COUNT(*) 
count statement that saves results on a variable in a java bean
count statement that saves results on a variable in a java bean  ... = ""; ResultSet nu = null; SQLStr = "SELECT COUNT(*) AS COS FROM dev.history WHERE previous like 1; "; SQLStr = "SELECT COUNT(PREVIOUS
count statement that saves results on a variable in a java bean
count statement that saves results on a variable in a java bean  ... = ""; ResultSet nu = null; SQLStr = "SELECT COUNT(*) AS COS FROM dev.history WHERE previous like 1; "; SQLStr = "SELECT COUNT(PREVIOUS
Count number of occurences and print names alphabetically in Java
Count number of occurences and print names alphabetically in Java  I... for the printCount() method for the code to count the number of occurences of each...]+" "; } str = str.toLowerCase(); int count = -1
Java Word Count - Word Count Example in Java
Java Word Count - Word Count Example in Java  ... to count the number of lines, number of words and number of characters... some strings and program will count the number of characters and number of words
Java count frequency of words in the string
Java count frequency of words in the string. In this tutorial, you will learn how to count the occurrence of each word in the given string. String...;; } str = str.toLowerCase(); int count = -1; for (int i = 0; i < str.length
Java xml count occurrence of elements
Java xml count occurrence of elements Java provides xml parsers to read... parsers for different purposes. Here we will count the number of occurrences... Integer(1)); } else { int count = ((Integer) value).intValue
Hibernate count() Function
Hibernate count() Function In this tutorial you will learn how to use the HQL count() function count() function counts the maximum number of rows in a table however it doesn't count the null values of the specified column
Java count characters from file
Java count characters from file In this section, you will learn how to count... into character array in order to count the occurrence of each character...++) { char ch = third[counter]; int count = 0; for (int i = 0; i <
java program to insert data into a file and count the number of words from the file???????
java program to insert data into a file and count the number of words from the file???????  java program to insert data into a file and count the number of words from the file
Hibernate Count Query
Hibernate Count Query       In this section we will show you, how to use the Count Query. Hibernate..., they return an aggregate value (such as sum, average, and count) calculated from
Count Characters from the input string Java
Count Characters from the input string of Java In this section, you will learn how to count the occurrence of each character in the string. For this, we have... to count the occurrence of each character of the array.  Here is the code
Java Count word occurrence and export it to excel file
Java Count word occurrence and export it to excel file Here is an example of scanning a text file in a local drive, and count the frequency of each word in the text file or you can say count the number or occurrence of each word
To Count XML Element
To Count XML Element       In this section, you will learn to count the elements present... helps to count the XML element. It takes a xml file (as a string ) at the console
To Count The Elements in a XML File
To Count The Elements in a XML File       In this section, you will learn to count the element...; Here is the Java File: CountNodes.java
Use of count() function in XPath
Use of count() function in XPath       In the previous section of XPath in Java tutorial we have studied about how to run XPath query in java and in this section we are going
count occourance no of time no between 0 to 9 given by user in java
count occourance no of time no between 0 to 9 given by user in java  import java.io.*; class count_no { public static void main(String args...); }catch(Exception e){} } }   Here is a java
how to count unique and duplicate values from one table in mysql?
how to count unique and duplicate values from one table in mysql?  I have use EMP table.I want to count unique and duplicate records from emp table and how to use in java program
Count characters from text file in Java
Count characters from text file Using Java Here we are going to count... it into character array in order to count the occurrence of each character...;ch= third[counter];   int count=0;   for 
Count Records using the Prepared Statement
\PreparedStatement>java CountRecords Count records example using prepared... Count Records using the Prepared Statement  ... to count all records of the database table by using the PreparedStatement
How can i add a new count to this source code ? - Java Beginners
How can i add a new count to this source code ?  Hi everyone I... No. of found I get XTSM/XTS/TRX/XHAN and now i want count total of this ZHTYPE...); } if (xtsMap.containsKey(rec.getXts())) { Integer count = xtsMap.get
How can i add a new count to this source code ? - Java Beginners
How can i add a new count to this source code ?  Hi everyone I... No. of found I get XTSM/XTS/TRX/XHAN and now i want count total of this ZHTYPE...); } if (xtsMap.containsKey(rec.getXts())) { Integer count = xtsMap.get(rec.getXts
count in hibernate .
count in hibernate .  How to implements count in hibernate
Java count occurrence of number from array
Java count occurrence of number from array Here we have created an example that will count the occurrence of numbers and find the number which has the highest occurrence. Now for this, we have created an array of 15 integers
Count lines of a particular file
C:\vinod\Math_package>javac NumberOfLine.java C:\vinod\Math_package>java NumberOfLine Getting line number of a paritcular file example! Please enter file name with extension: AddTwoBigNumbers.shtml
Count numbers of spaces and number of words from the input string
Count numbers of spaces and number of words from the input string Java In this section, you will learn how to count the number of spaces and words from... the number of spaces. Now, in order to count the number of words, we have splitted
Java: Example - Count vowels
Java: Example - Count vowels This example method counts all vowels.... //-------------------------------------------- countVowels() int countVowels(String text) { int count = 0; // start the count at zero // change the string to lowercase text
Word Count
Word Count      .... To count it we are using countMatches() method... and "sub" is substring to be count.  The code of the program
count the users?
count the users?  how to get the number of users logged in any application
Count number of "*"
Count number of "*"  I have this code to count the number of * from...:"); String text = bf.readLine(); int count = 0; for (int i = 0; i...); if (c=='*' ) { count

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.