• 大小:
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-12
  • 语言: Java
  • 标签: JavaFX  

资源简介

JavaFX编写学生管理系统(利用scene builder)

资源截图

代码片段和文件信息

package sample;

import java.sql.ResultSet;
import java.sql.SQLException;

public class Check {
    public static boolean checkreturn(String account String password String role) throws SQLException ClassNotFoundException {
        boolean checkbool = false;
        Dbconnection dbconnection = new Dbconnection();
        dbconnection.setSql(“SELECT * FROM Users WHERE User_id=? AND User_Password=? AND User_Power=?“);
        dbconnection.getStmt().setString(1 account);
        dbconnection.getStmt().setString(2 password);
        dbconnection.getStmt().setString(3 role);
        ResultSet rs = dbconnection.getStmt().executeQuery();
        if (rs.next()) {
            checkbool = true;
        } else {
            checkbool = false;
        }
        dbconnection.closeConn();
        rs.close();
        dbconnection.getStmt().close();
        return checkbool;
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-01-12 20:30  学生管理系统\
     目录           0  2017-03-01 09:07  学生管理系统\.idea\
     目录           0  2017-01-12 20:58  学生管理系统\.idea\artifacts\
     文件         739  2017-01-12 20:57  学生管理系统\.idea\artifacts\.xml
     文件         415  2017-01-12 20:58  学生管理系统\.idea\artifacts\_jar.xml
     文件         734  2016-12-19 20:21  学生管理系统\.idea\compiler.xml
     文件         189  2016-12-19 20:21  学生管理系统\.idea\description.html
     文件         171  2016-12-19 20:21  学生管理系统\.idea\encodings.xml
     文件         218  2016-12-19 20:21  学生管理系统\.idea\gradle.xml
     目录           0  2016-12-26 16:00  学生管理系统\.idea\inspectionProfiles\
     目录           0  2016-12-23 23:14  学生管理系统\.idea\libraries\
     文件         248  2016-12-23 23:14  学生管理系统\.idea\libraries\sqljdbc4.xml
     文件         489  2016-12-19 20:21  学生管理系统\.idea\misc.xml
     文件         283  2016-12-19 20:22  学生管理系统\.idea\modules.xml
     文件        8919  2016-12-19 20:21  学生管理系统\.idea\uiDesigner.xml
     文件         173  2016-12-19 20:21  学生管理系统\.idea\vcs.xml
     文件       81827  2017-03-01 09:07  学生管理系统\.idea\workspace.xml
     文件           9  2017-03-01 08:54  学生管理系统\name.text
     目录           0  2017-01-12 20:57  学生管理系统\out\
     目录           0  2017-01-12 20:59  学生管理系统\out\artifacts\
     文件       40716  2017-01-12 20:59  学生管理系统\out\artifacts\.jar
     目录           0  2017-01-12 21:01  学生管理系统\out\artifacts\_jar\
     文件           4  2017-01-22 20:26  学生管理系统\out\artifacts\_jar\name.text
     文件      585020  2017-01-12 20:58  学生管理系统\out\artifacts\_jar\sqljdbc4.jar
     文件       40716  2017-01-12 20:58  学生管理系统\out\artifacts\_jar\学生管理系统.jar
     目录           0  2017-01-12 20:30  学生管理系统\out\production\
     目录           0  2017-01-12 20:58  学生管理系统\out\production\学生管理系统\
     目录           0  2017-01-12 20:58  学生管理系统\out\production\学生管理系统\meta-INF\
     文件          76  2017-01-12 20:58  学生管理系统\out\production\学生管理系统\meta-INF\MANIFEST.MF
     目录           0  2017-01-12 20:34  学生管理系统\out\production\学生管理系统\sample\
     文件        1281  2017-01-12 20:30  学生管理系统\out\production\学生管理系统\sample\Check.class
............此处省略49个文件信息

评论

共有 条评论