javaweb簡單的登錄注冊(javaweb實現(xiàn)用戶登錄注冊)
本篇文章給大家談?wù)刯avaweb簡單的登錄注冊,以及javaweb實現(xiàn)用戶登錄注冊對應(yīng)的知識點,希望對各位有所幫助,不要忘了收藏本站喔。
本文目錄一覽:
- 1、java語言實現(xiàn)用戶注冊和登錄
- 2、急求用javaWeb做個注冊頁面的方法
- 3、大神,跪求java web 一個用戶用戶注冊登錄,不用連接數(shù)據(jù)庫,不要連接數(shù)據(jù)庫!!
- 4、javaweb的學(xué)生注冊登錄(學(xué)號,姓名,密碼),刪除,修改
- 5、java web實現(xiàn)簡單的用戶登錄需要哪些技術(shù)
- 6、用java web編寫一個用戶注冊界面(只要寫出以下要求就行)
java語言實現(xiàn)用戶注冊和登錄
//這個是我寫的,里面有連接數(shù)據(jù)庫的部分。你可以拿去參考一下
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數(shù)據(jù)庫
Connection con = DriverManager.getConnection(
"jdbc:mysql://localhost/Car_zl", "root", "1");// 數(shù)據(jù)庫名為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);
}
}
急求用javaWeb做個注冊頁面的方法
public
void
service(ServletRequest
arg0,
ServletResponse
arg1)
throws
ServletException,
IOException
{
//獲得客戶端提交的姓名和密碼
String
name=arg0.getParameter("name");
String
pwd=arg0.getParameter("pwd");
//調(diào)用Dao
RegDao
regdao=new
RegDao();
regDao.reg(name,pwd);
}
javaweb的學(xué)生注冊登錄(學(xué)號,姓名,密碼),刪除,修改
如果不多的話就直接修改 要更新就 update table set id='19'+substring(id,1,4)+'00'+substring(id,5,3)
java web實現(xiàn)簡單的用戶登錄需要哪些技術(shù)
簡單的話,就是jsp頁面有個用戶信息表單,點擊提交就跑到后臺servlet
然后后臺就校驗用戶身份信息,信息可以從數(shù)據(jù)庫拿,用jdbc連接數(shù)據(jù)庫最簡單了
完了之后就用response響應(yīng)請求,或者是發(fā)request請求新的登錄成功頁面jsp
用java web編寫一個用戶注冊界面(只要寫出以下要求就行)
一步步更新:頁面
form action="regist.servlet" method="post"table width="99%" border="0" align="center" cellpadding="0" cellspacing="0" class="tableAdd borTop" tr th width="14%" height="30" nowrap用戶名/th td class="pl5" INPUT id="sName" name="name" type="text" size="20" /td /tr tr th width="14%" height="30" nowrap密碼/th td class="pl5" INPUT name="password" type="password" size="20" /td /tr tr th width="14%" height="30" nowrap確認(rèn)密碼/th td class="pl5" INPUT name="confrimPwd" type="password" size="20" /td /tr tr th width="14%" height="30" nowrap性別/th td class="pl5" 男INPUT name="sex" type="radio" value="1" checked="checked" size="20" 女INPUT name="sex" type="radio" value="0" size="20" /td /tr tr th width="14%" height="30" nowrap愛好/th td class="pl5" INPUT name="enjoy" type="checkbox" size="20" value="籃球"籃球 INPUT name="enjoy" type="checkbox" size="20" value="足球"足球 /td /tr tr th width="14%" height="30" nowrap生日/th td class="pl5" INPUT name="brithday" type="text" size="20" /td /tr tr th width="14%" height="30" nowrap備注/th td class="pl5" textarea rows="5" cols="200" name="remark"/textarea /td /tr tr th width="14%" height="30" nowrap /th td class="pl5" input type="submit" value="提交" input type="reset" value="重置" /td /tr/table/form
數(shù)據(jù)庫部分:
import java.sql.DriverManager;import java.sql.ResultSet;import java.sql.SQLException;import com.mysql.jdbc.Connection;import com.mysql.jdbc.Statement;public class DataBaseUtil { public static Connection getConnection() throws ClassNotFoundException, SQLException { Class.forName("com.mysql.jdbc.Driver"); Connection conn = (Connection) DriverManager.getConnection("jdbc:mysql://192.168.100.113/datebase", "username", "password"); return conn; } public static Statement getPS() throws ClassNotFoundException, SQLException { Statement statement = (Statement) getConnection().createStatement(); return statement; } public static void close(Connection conn,Statement st,ResultSet rs) throws SQLException{ if(rs != null) { rs.close(); } if(st != null) { st.close(); } if(conn != null) { conn.close(); } }}
關(guān)于javaweb簡單的登錄注冊和javaweb實現(xiàn)用戶登錄注冊的介紹到此就結(jié)束了,不知道你從中找到你需要的信息了嗎 ?如果你還想了解更多這方面的信息,記得收藏關(guān)注本站。
掃描二維碼推送至手機訪問。
版權(quán)聲明:本文由飛速云SEO網(wǎng)絡(luò)優(yōu)化推廣發(fā)布,如需轉(zhuǎn)載請注明出處。