首页 > 编程知识 正文

java注册登录代码填写用户名,java注册登录代码填写用户名是什么

时间:2023-12-27 22:26:57 阅读:325233 作者:YDUA

本文目录一览:

用JAVA代码实现登录名字与密码

1.写一个操作数据库的通用DAO(假设为Dao.java),提供

·加载数据库驱动和获取数据库连接的方法:void getConnection();

·执行查询的方法:ResultSet executeQuery(String sql);

·执行更新的方法:Integer executeUpdate(String sql);

·关闭资源的方法:void releaseResource(Connection con);

2.在你的界面中把用户名和密码取出来

·username = yourTextField.getText();

·password = yourPasswordField.getText();

3.匹配

·验证username、password是否是有效输入值(例如:不能包含特殊字符,不能有注入嫌疑等)

·String sql = "select * from yourTable where username='"+username+"' and password='"+password+"'" ;

·Dao.executeQuery(sql):如果有结果说明合法,否则不合法。

不懂Connect 我

java语言实现用户注册和登录

//这个是我写的,里面有连接数据库的部分。你可以拿去参考一下

import java.awt.*;

import javax.swing.*;

import java.awt.event.*;

import java.sql.*;

class LoginFrm extends JFrame implements ActionListener// throws Exception

{

JLabel lbl1 = new JLabel("用户名:");

JLabel lbl2 = new JLabel("密码:");

JTextField txt = new JTextField(5);

JPasswordField pf = new JPasswordField();

JButton btn1 = new JButton("确定");

JButton btn2 = new JButton("取消");

public LoginFrm() {

this.setTitle("登陆");

JPanel jp = (JPanel) this.getContentPane();

jp.setLayout(new GridLayout(3, 2, 5, 5));

jp.add(lbl1);

jp.add(txt);

jp.add(lbl2);

jp.add(pf);

jp.add(btn1);

jp.add(btn2);

btn1.addActionListener(this);

btn2.addActionListener(this);

}

public void actionPerformed(ActionEvent ae) {

if (ae.getSource() == btn1) {

try {

Class.forName("com.mysql.jdbc.Driver");// mysql数据库

Connection con = DriverManager.getConnection(

"jdbc:mysql://localhost/Car_zl", "root", "1");// 数据库名为Car_zl,密码为1

System.out.println("com : "+ con);

Statement cmd = con.createStatement();

String sql = "select * from user where User_ID='"

+ txt.getText() + "' and User_ps='"

+ pf.getText() + "'" ;

ResultSet rs = cmd

.executeQuery(sql);// 表名为user,user_ID和User_ps是存放用户名和密码的字段名

if (rs.next()) {

JOptionPane.showMessageDialog(null, "登陆成功!");

} else

JOptionPane.showMessageDialog(null, "用户名或密码错误!");

} catch (Exception ex) {

}

if (ae.getSource() == btn2) {

System.out.println("1111111111111");

//txt.setText("");

//pf.setText("");

System.exit(0);

}

}

}

public static void main(String arg[]) {

JFrame.setDefaultLookAndFeelDecorated(true);

LoginFrm frm = new LoginFrm();

frm.setSize(400, 200);

frm.setVisible(true);

}

}

java 如何自动填充网页上的用户名和密码?

java 自动填充网页上的用户名和密码有两种方法:

方法一、在input 标签里面的 value属性赋值即可,如:

input value='x' //这样就每次打开都自动填充x

方法二、用java模拟post提交;代码如下;

                

package com.sxzl.test;

public class TestRuntime {

        public static void main(String args[]) { 

        try { 

        //String myArgs[] ={"

};

        Process process = Runtime.getRuntime().exec( 

        //"cmd.exe /c start 

        "C:\Program Files\Internet Explorer\iexplore.exe"    

        +" 

        ); 

        

        } catch (Exception e) { 

        e.printStackTrace(); 

        } 

        } 

        

}

用JAVA编写一个用户或注册登录界面。请哪位高手能够写下具体的代码,谢谢

效果图

代码

!DOCTYPE html

html

head

meta charset="UTF-8"

title先锋图书馆管理系统-登录/title

style

*{

margin: 0;

padding: 0;

list-style: none;

}

#top{

width: 1000px;

height: 95px;

margin: 0 auto;

margin-top: 25px;

}

#top_top{

width: 1000px;

height: 65px;

background: deepskyblue;

}

#top_top_left{

width: 300px;

height: 65px;

float: left;

}

#top_top_leftlabel{

width: 200px;

height: 65px;

color: white;

float: right;

}

#top_top_left#a2{

padding-left: 10px;

padding-top: 20px;

font-size: 16px;

}

#top_bottom{

width: 1000px;

height: 30px;

}

#top_bottom_left{

width: 340px;

height: 30px;

line-height: 30px;

font-size: 12px;

background: skyblue;

color: white;

text-indent: 2em;

float: left;

}

#top_bottom_right{

width: 660px;

height: 30px;

line-height: 30px;

font-size: 12px;

color: blueviolet;

text-align: center;

float: right;

background: lightskyblue;

}

#content{

width: 1000px;

height: 600px;

margin: 0 auto;

background:#587FBA;

}

#content#text{

width: 1000px;

height: 50px;

line-height: 50px;

padding-top: 100px;

font-size: 36px;

font-family:"楷体";

font-weight: bold;

text-align: center;

}

#content#login{

width: 480px;

height: 210px;

margin-top: 20px;

margin-left: 260px;

background: #85A0CB;

}

#content#loginimg{

float: left;

}

#content#login#select{

width: 305px;

height: 210px;

float: right;

}

#content#login#selectdiv{

width: 230;

height: 30px;

margin-left: 30px;

}

#content#login#select#d1{

margin-top:30px;

margin-bottom: 3px;

}

#content#login#selectp{

font-size: 14px;

margin-left: 95px;

}

#bottom{

width: 1000px;

height: 35px;

line-height: 35px;

margin: 0 auto;

background: deepskyblue;

text-align: center;

color: white;

}

/style

/head

body

div id="top"

div id="top_top"

div id="top_top_left"

img src="img/test/a13.png" width="78px" height="65px"label id="a2"先锋图书馆系统管理平台/label

/div

/div

div id="top_bottom"

div id="top_bottom_left"当前位置 : 首页  系统管理  登录/div

div id="top_bottom_right"当前时间 : label id="lable"/label/div

/div

/div

div id="content"

div id="text"欢迎登录先锋图书馆管理系统/div

div id="login"

img src="img/test/a14.png"  width="175px" height="210px"/

form id="select"

div id="d1"用户名: nbsp;nbsp;input type="text" //div

div密    nbsp; 码: nbsp;nbsp;input type="password" //div

p

input type="radio" name="user" value="read"/读者nbsp;nbsp;nbsp;nbsp;

input type="radio" name="user" value="admin"/管理员

/pbr/

p

input type="button" value="确定" style="width: 50px;" onclick="put()"/nbsp;nbsp;nbsp;nbsp;

input type="reset" value="重置" style="width: 50px;"/

/p

/form

/div

/div

div id="bottom"欣欣科技有限公司版权所有/div

/body

script type="text/javascript" src="JQuery/jquery.js"/script

script type="text/javascript" src="js/GetCurrentTime.js"/script

script

     //验证用户名和密码

     function put(){

     var d = $("#selectdivinput");//获取用户名和密码

     var name = d[0].value;

     var pass = d[1].value;

     var user = null;

     var r = document.getElementsByName("user");//获取用户类型

     for(i=0;ir.length;i++){

     if(r[i].checked){

     user=r[i].value;

     }

     }

     //console.log(name + "," +pass + "," +user);//输出测试

     if(user==null){

     window.alert("请选择用户类型!");

     }else if(user=="admin"  name!="admin"){

     window.alter("用户名错误!");

     }else if(user=="admin"  name=="admin"  pass!="123456"){

     window.alert("密码错误!");

     }else if(name=="admin"  pass=="123456"  user=="admin"){

     window.location.href="work_02_welcome.html";//在js中在本页面中打开新链接

     }else{

     window.alert("用户名错误");

     }

     }

/script

/html

用JAVA编写输入用户名和密码

import java.util.Scanner;

public class Logon {

private static final char username = '青';

private static final int password = 123;

private static final Scanner san = new Scanner(System.in);

public static void main(String[] args) {

char iname;

int ipass;

System.out.print("请输入用户名: ");

iname = san.next().charAt(0);

System.out.print("请输入密码: ");

ipass = san.nextInt();

if(Logon.username == iname Logon.password == ipass) {

System.out.println("欢迎你, " + Logon.username);

} else {

System.out.println("对不起, 你不是" + Logon.username);

}

}

}

用java编程实现用户注册并进行登录操作

String username = "",password = "",passwordagain = ""; // 定义用户名和密码

将该变量等于为全局变量 或局部变量即可

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。