Java第三方jar包 資料庫連線

2021-08-17 14:53:02 字數 1830 閱讀 2234

1.使用者登入

/*

* 使用者登陸

*/public

class login else

//sql語句的注入問題新增乙個恆成立的條件

//select *from users where name ='131313'

} }

2.建立user類,類中的變數與資料庫中的欄位名一一對應

public

class

user

public

user(int id, string password, string name, string email, date birthday)

public

intgetid()

public

void

setid(int id)

public string getpassword()

public

void

setpassword(string password)

public string getname()

public

void

setname(string name)

public string getemail()

public

void

setemail(string email)

public date getbrithday()

public

void

setbrithday(date brithday)

@override

public string tostring()

}

3.寫乙個配置檔案

driverclass=com.mysql.jdbc.drive

url=jdbc:mysql://localhost:3306/myjdbc

user=root

password=123456

4.寫乙個讀取配置檔案和關閉資料庫的方法

public

class jdbcutil

//關閉資料庫的方法 如果沒有結果集需要關閉 直接傳空就可以

public

static

void

closeall(resultset executequery , statement createstatement,connection connection) catch (sqlexception e)

//加快系統**的速度

executequery = null;

}if (createstatement !=null) catch (sqlexception e)

//加快系統**的速度

executequery = null;

}if (connection !=null) catch (sqlexception e)

//加快系統**的速度

executequery = null;

}

}}

寫乙個登陸時要查詢資料庫的操作

/*

* 處理登陸的查詢操作

* */

public class dologin

} catch (classnotfoundexception | sqlexception e) finally

return user;

}}

Fatwire整合第三方jar包

嚴格意義上這不屬於fatwire知識的範疇。因為fatwire基於j2ee,所以這裡僅作為參考備忘 這裡以jstl為例 如果伺服器採用tomcat5.5,不支援jstl1.2,只能用 jstl1.1,複製 jstl.jar xalan.jar serializer.jar 到cs web inf l...

第三方jar包開發小結

使用jsp作為靜態資源,部分框架無法解析。所以靜態頁面這種東西,還是用html最合適。作為提供給別人用的第三方jar包,應該盡可能減少配置及配置檔案的產生。properties物件的put方法,value不能為null,否則會拋空指標異常。file.mkdir只能建立一層目錄,當要建立的目錄中,多層...

匯入第三方庫和jar

1.匯入乙個第三方類庫含有源 包 以android studio中匯入github上的slidingmenu為例,下面展示整個過程.首先是slidingmennu的github 直接在github上download zip在本地目錄中解壓開啟slidingmenu master 將解壓的slidin...