i have some problem with my java code ... i working on netbeans ..
i write a code for user authetication ... in this code it take user name password and a user certificate(which is given by master ) the problem is this that when i run this desktop application on netbeans its works but when i run this by commmand prompt or by double clickin on jar file it gives wrong out put and says certificate is tempered ..
i found out that when it reads that file by executing in netbeans it reads its correctly but when i run this program by command prompt the file contents change ...
i dnt know why ... plz help
August 6, 2010 at 12:43 PM
Hi Friend,
It seems that you haven't set the Path variable in Environment Variables. Anyways we are sending you the Login Code in swings.
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.sql.*;
class LoginDemo extends JFrame{
JButton SUBMIT;
JPanel panel;
JLabel label1,label2;
final JTextField text1;
final JPasswordField text2;
LoginDemo(){
label1 = new JLabel();
label1.setText("UserName:");
text1 = new JTextField(15);
label2 = new JLabel();
label2.setText("Password:");
text2 = new JPasswordField(15);
SUBMIT=new JButton("Login");
panel=new JPanel(new GridLayout(4,2));
panel.add(label1);
panel.add(text1);
panel.add(label2);
panel.add(text2);
panel.add(SUBMIT);
add(panel,BorderLayout.CENTER);
SUBMIT.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent ae){
String value1=text1.getText();
String value2=text2.getText();
String user1="";
String pass1="";
try{
Class.forName("com.mysql.jdbc.Driver");
Connection con = DriverManager.getConnection("jdbc:
mysql://localhost:3306/test";, "root", "root");
Statement st = con.createStatement();
ResultSet res = st.executeQuery("SELECT * FROM login where username='"+value1+"' && password='"+value2+"'");
while (res.next()) {
user1 = res.getString("username");
pass1 = res.getString("password");
}
if (value1.equals(user1) && value2.equals(pass1)) {
JOptionPane.showMessageDialog(null,"Welcome");
}
else{
JOptionPane.showMessageDialog(null,"Incorrect login or password","Error",JOptionPane.ERROR_MESSAGE);
}
}
catch(Exception e){
System.out.println(e.getMessage());
}
}
});
}
public static void main(String arg[]) {
LoginDemo frame=new LoginDemo();
frame.pack();
frame.setVisible(true);
}
}
Thanks
Related Tutorials/Questions & Answers:
abt proj - Java Beginnersabt proj which topic i have to study carefully ,when I am going to start
java project using swings Hi Friend,
Learn awt, swing...
http://www.roseindia.net/
java/example/
java/awt/
http://www.roseindia.net
Advertisements
abt proj - Java Beginnersabt proj if we have already make login page and resister page, if i click on the login button we go to the home page ,home page contain some data
plz help
abt java - Java Beginnersabt java hiiiii
i m new to this language
i have some problem with my
java code ... i working on netbeans ..
i write a code for user authetication ... in this code it take user name password and a user certificate(which
abt proj - Java Beginnersabt proj I made login page, when i click on login button , thaen how to go on home page on home page containe some tab like add, delete, update,etc... the following link:
http://www.roseindia.net/
java/example/
java/swing/add_edit_and_delete
abt java project - Java Beginnersabt java project I don't know too much about
java , and I am working on
java project, where editor is eclipse and backend postgresql
How can i take help about my project, which book I should refers plz help me
abt java project - Java Beginnersabt java project How to make the home page that contain four tabbedPane like additem, deleteitem ,update etc,
so plz help me
thanx Hi.../
java/example/
java/swing/add_edit_and_delete_employee_inf.shtml
If you want
abt java project - Java Beginnersabt java project this program compile sucessfully but data is not store in data base if any thing correction plz do it
import java.awt.*;
import javax.swing.*;
import java.sql.*;
import java.awt.event.*;
public class
abt jmeter - Java Server Faces Questionsabt jmeter how to use jmeter for testing the program?
Hi friend,
For using jmeter for testing visit to :
http://www.roseindia.net/jmeter/
http://www.roseindia.net/jmeter/using-jmeter.shtml
Thanks
ModuleNotFoundError: No module named 'abt'ModuleNotFoundError: No module named '
abt' Hi,
My Python program is throwing following error:
ModuleNotFoundError: No module named '
abt'
How to remove the ModuleNotFoundError: No module named '
abt' error
abt the bank applicationabt the bank application pls can u send to me the user table and transaction table sql statement with their datatype used in this bank application to my email
need to ans abt db - JSP-Servletneed to ans
abt db helllo can you tell me
m just starting to knowing
abt servlet and i trying to making e-mail site so can you tell me with the
java servlet wht is the backhand database to use to proper with that site
java programming - Java Beginnersjava programming heloo expert,
thanks for your coding
i recently asked about the question on
abt how to program a atm system
may i noe in which platform can i run those codes ??
netbeans ?? any suggestions
Platform Independent In Java - Java BeginnersPlatform Independent In Java
Hi Friends,
I want to know
abt platform indepent in
java. Write once run anywhere means, after compilation wil get .class file. Can we execute
.class file in another platform
scope of Java Swing in IT ?scope of
Java Swing in IT ? Hi.......
I am fresher ,now I m working in
Java Swing developing desktop apps. I am confused
abt use of
Java Swing... the "How much scope of
Java Swing in IT now ?" & wht should i do
Java sortingJava sorting can somebody help me know how
java sorts? means which... the following links:
Java bubble sort
Java Heap Sort
Java Insertion Sort
Java Merge Sort
Java Selection Sort
Java Quick Sort
hello
Synchronization with Multithreading - Java Beginners i know
abt synchronization is , we can implement synchronized keyword... information on Thread visit to :
http://www.roseindia.net/
java/thread/SynchronizedThreads.shtml
http://www.roseindia.net/
java/thread/
Thanks
Abstract class - Java BeginnersAbstract class Why can use abstract class in
java.?when abstract class use in java.plz Explain with program. abstract class abs{
public... are overrided in which that is implemented . thats all
abt abstract classes
Java Barcode Program with Oracle database idea
abt this...Please can anyone give me some idea. Do I need to buy
Java...
Java Barcode Program with Oracle database Hi Everyone,
I need help.... Please explain in detail as am new to this
Java Barcode. I am dealing
ClusteringClustering Plz let me know
abt Clustering in
Java with an example
Java have clear idea
abt this, Please help me, Its very urgent.
Kindly provide me
when do we get null pointer exception in javawhen do we get null pointer exception in java can anybody explain me
abt null pointer exception?
like in wt situation do v get NPE?
Are these 2 strings same?
String str;
String str=null
java - Development process and concurrent programming paradigms of
Java. Use JDBC to connect to a back-end... KUMARESH for my sister DHANA
// And dedicated to my
java Professor... fMenu;
JMenu hMenu;
JMenuItem hMen,
abt;
JMenuItem eMen
java - Java Beginnersjava if m required to determine if x is a perfect number hw do i go
abt doing it Hi friend,
Use the following code:
public class PerfectNumber{
public static void main(String[]args){
int x = 28;
int
Hibernate Search - HibernateHibernate Search hello
i am
java developer and mostely concern with that site whenever need to know some
java related technology or on other... find helpfull material
abt it on internet,, i read on many site
abt java - WebSevicesjava hi
wht is the differences b/w WebServerApplication and Application Server
could u give indetail description
abt JSP implict Objects
Hi friend,
Difference between WebServer and Application Server
NET BEAN - IDE QuestionsNET BEAN Thanks for your response actually i am working on struts and other window application. so if you have complete resources
abt it then tell me....
and if you have link of this book ""
Java EE Development with Net Beans
j2mej2me COmmand c=new Command("Exit",Command.EXIT,100);Please expalin
abt 3 parameters
large resultset values - SQLlarge resultset values i have one query which will bring more than one lakh records from database(total records are
abt 3 crores).
While getting... sets:
Java heap space. Result set size:35,886,780. JVM total memory size:66,650,112
Menu Bar prob.Menu Bar prob. I want a menu to be displayed in each page of my swing appl. how to go
abt jaspereports - Development processjaspereports Hi friends i have a doubt
abt
How to create and execute the jasper reports is JDeveloper IDE is necessary to execte jasperreports or we can execute it directly urget plz give the reply
3D PASSWORD3D PASSWORD HI i would like to know
abt where the 3d password in india used and also few info about the 3d password pls rply some1 as soon as possible
javajava diff bt core
java and
java