String name;
String password;
然后你要获得对数据库的连接Connection,然后建立Statement以执行相关的Sql语句
一种是直接createStatement()方法得到Statement s
然后写一句String sql=“select * from user where user='+user+"',password='"+ password+" ' "
然后是s.executeQuery(sql)看有没有返回结果,如果有者登录成功没有则错误
读取配置文件的代码:import java.io.FileInputStream
import java.io.IOException
import java.util.Properties
public class App {
public static void main(String[] args) {
Properties prop = new Properties()
try {
prop.load(new FileInputStream("config/config.properties"))
System.out.println(prop.getProperty("database"))
System.out.println(prop.getProperty("dbuser"))
System.out.println(prop.getProperty("dbpassword"))
} catch(IOException e) {
e.printStackTrace()
}
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)