×

java学生成绩管理系统 管理系统 java

java学生成绩管理系统(用java做一个学生成绩管理系统需要哪些技术)

admin admin 发表于2022-09-03 02:25:18 浏览146 评论0

抢沙发发表评论

本文目录

用java做一个学生成绩管理系统需要哪些技术


用java做一个学生成绩管理系统,可以用到如下技术:
后台:ssh框架,不用框架的话,单纯地用jsp
+
servlet也可以。
前台:html
+
css
+
js
+
jquery
数据库:掌握sql语言的编写,数据库的连接。复杂的项目还需要用到存储过程。

java设计一个学生成绩管理系统


public static void main(String args) throws IOException {
Scanner sc = new Scanner(System.in);

String exit=““;
Map《String, List《Float》》 map1=new HashMap();
while(!exit.equals(“exit“)) {
System.out.println(“请出入学生姓名“);
List《Float》 list = new ArrayList《Float》();
map1.put(sc.next(), list);
for(int i=0;i《3;i++) {
System.out.println(“请出入学生成绩“);
list.add(sc.nextFloat());
}
System.out.println(“输入 exit 退出成绩录入,其他则继续录入“);
exit=sc.next();
}
for(String key :map1.keySet()) {
List《Float》 list =map1.get(key);
float avage =0l;
for(Float box :list) {
avage += box;
}
System.out.println(key+“的平均成绩:“+ avage/list.size());
}
}
//只做了第一题,追加分数,可得第二题答案

基于java设计一个学生成绩管理系统,要求有界面,且有增加,查询,修改,删除,退出功能,代码如何写


import java.awt.Color;
import java.awt.Font;
import java.awt.Frame;
import java.awt.Label;
import java.awt.TextField;
import java.awt.Window;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.sql.SQLException;
import javax.swing.JButton;
public class Stmessege {
Font font = new Font(“楷体“, Font.BOLD, 18);
private Frame m = new Frame(“登陆成功界面“);
protected Window f;
public Stmessege() {
m.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent evt) {
m.setVisible(false);
m.dispose();
System.exit(0);
}
});
m.setSize(460, 360);
m.setBackground(Color.green);
m.setLayout(null);
m.setLocationRelativeTo(null);
Label l0 = new Label(“管理员信息“);
Font font1 = new Font(“楷体“, Font.BOLD, 32);
l0.setForeground(Color.blue);
l0.setSize(180, 50);
l0.setLocation(150, 30);
l0.setFont(font1);
final Label l1 = new Label(“姓名:“);
l1.setSize(60, 20);
l1.setLocation(10, 100);
l1.setFont(font);
TextField tf1 = new TextField(“黄朋“);
tf1.setForeground(Color.blue);
tf1.setBackground(Color.white);
tf1.setSize(50, 20);
tf1.setLocation(70, 100);
final Label l2 = new Label(“学号:“);
l2.setSize(60, 20);
l2.setLocation(140, 100);
l2.setFont(font);
TextField tf2 = new TextField(“111265“);
tf2.setForeground(Color.blue);
tf2.setBackground(Color.white);
tf2.setSize(60, 20);
tf2.setLocation(190, 100);
final Label l3 = new Label(“性别:“);
l3.setSize(60, 20);
l3.setLocation(280, 100);
l3.setFont(font);
TextField tf3 = new TextField(“男“);
tf3.setForeground(Color.blue);
tf3.setBackground(Color.white);
tf3.setSize(40, 20);
tf3.setLocation(360, 100);
final Label l4 = new Label(“班级:“);
l4.setSize(60, 20);
l4.setLocation(10, 170);
l4.setFont(font);
TextField tf4 = new TextField(“611231“);
tf4.setForeground(Color.blue);
tf4.setBackground(Color.white);
tf4.setSize(60, 20);
tf4.setLocation(67, 170);
final Label l5 = new Label(“系别:“);
l5.setSize(60, 20);
l5.setLocation(140, 170);
l5.setFont(font);
TextField tf5 = new TextField(“计算机工程系“);
tf5.setForeground(Color.blue);
tf5.setBackground(Color.white);
tf5.setSize(80, 20);
tf5.setLocation(200, 170);
final Label l6 = new Label(“成绩:“);
l6.setSize(60, 20);
l6.setLocation(280, 170);
l6.setFont(font);
TextField tf6 = new TextField(“95“);
tf6.setForeground(Color.blue);
tf6.setBackground(Color.white);
tf6.setSize(40, 20);
tf6.setLocation(360, 170);
final Label l7 = new Label(“专业:“);
l7.setSize(60, 20);
l7.setLocation(10, 230);
l7.setFont(font);
TextField tf7 = new TextField(“软件技术“);
tf7.setForeground(Color.blue);
tf7.setBackground(Color.white);
tf7.setSize(60, 20);
tf7.setLocation(70, 230);
JButton btn1 = new JButton(“添加“);
btn1.setForeground(Color.blue);
btn1.setSize(80, 38);
btn1.setLocation(35, 300);
btn1.setFont(font);
btn1.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub
new 插入();
m.setVisible(true);
}
});
JButton btn2 = new JButton(“查询学生学籍信息“);
btn2.setForeground(Color.blue);
btn2.setSize(200, 38);
btn2.setLocation(135, 300);
btn2.setFont(font);

btn2.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
Stmessege1 f;
try {
f = new Stmessege1();
f.Stmessege11();
m.setVisible(true);
} catch (SQLException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
} catch (ClassNotFoundException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
}
});
JButton btn3 = new JButton(“删除“);
btn3.setForeground(Color.blue);
btn3.setSize(80, 38);
btn3.setLocation(350, 300);
btn3.setFont(font);
btn3.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub

new 删除();
//f.setVisible(false);
m.setVisible(true);
}
});

JButton btn4 = new JButton(“更新“);
btn4.setForeground(Color.blue);
btn4.setSize(80, 38);
btn4.setLocation(200, 230);
btn4.setFont(font);
btn4.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub
new 更新();
m.setVisible(true);

}
});
m.add(l0);
m.add(l1);
m.add(tf1);
m.add(l2);
m.add(tf2);
m.add(l3);
m.add(tf3);
m.add(l4);
m.add(tf4);
m.add(l5);
m.add(tf5);
m.add(l6);
m.add(tf6);
m.add(l7);
m.add(tf7);
m.add(btn1);
m.add(btn2);
m.add(btn3);
m.add(btn4);
m.setVisible(true);
}
public static void main(String args) {
new Stmessege();
}
}
可以仿照我的做一下,希望采纳,我才一级哦
-管理系统

java编写学生成绩管理系统


import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectOutputStream;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
public class Admin {
public static void main(String args) throws IOException, ClassNotFoundException {
Scanner in = new Scanner(System.in);
int studentNum = 5;
List《Student》 result = new ArrayList《Student》();
for (int i = 0; i 《 studentNum; i++) {
Student bean = new Student();
System.out.print(“输入第“ + (i + 1) + “个学生学号:“);
bean.setNo(in.next());
System.out.print(“输入第“ + (i + 1) + “个学生姓名:“);
bean.setName(in.next());
System.out.print(“输入第“ + (i + 1) + “个学生数学成绩:“);
bean.setShuxue(in.nextDouble());
System.out.print(“输入第“ + (i + 1) + “个学生语文成绩:“);
bean.setYuwen(in.nextDouble());
result.add(bean);
}
while (true) {
System.out.println(“1.保存到文件;2.总成绩;3.平均成绩;4.不及格比例;5.及格比例;6,优良比例;0.退出.“);
int i = in.nextInt();
if (i == 0) {
System.exit(0);
}
if (i == 1) {
save(result);
}
if (i == 2) {
for (int j = 0; j 《 result.size(); j++) {
Student s = result.get(j);
System.out.println(“学生“ + s.getName() + “的总成绩是:“ + s.all());
}
}
if (i == 3) {
int jigeSum = 0;
for (int j = 0; j 《 result.size(); j++) {
Student s = result.get(j);
if (!s.isJige()) {
jigeSum++;
}
}
System.out.println(“不及格比例:“ + jigeSum + “/“ + result.size());
}
if (i == 4) {
// 篇幅受限,自行开发
}
if (i == 5) {
// 篇幅受限,自行开发
}
}
}
private static void save(List result) throws IOException {
FileOutputStream fs = new FileOutputStream(“d:/a.txt“);
ObjectOutputStream os = new ObjectOutputStream(fs);
os.writeObject(result);
os.flush();
os.close();
fs.close();
}
}
class Student implements Serializable {
private String no;
private String name;
private double shuxue;
private double yuwen;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getNo() {
return no;
}
public void setNo(String no) {
this.no = no;
}
public double getShuxue() {
return shuxue;
}
public void setShuxue(double shuxue) {
this.shuxue = shuxue;
}
public double getYuwen() {
return yuwen;
}
public void setYuwen(double yuwen) {
this.yuwen = yuwen;
}
public double all() {
return shuxue + yuwen;
}
public double avg() {
return all() / 2;
}
public boolean isJige() {
return avg() 》 60;
}
}
-java

JAVA 学生成绩管理系统 combobox 运用问题


如果说jComboBox1是你用来判断的
jComboBox1.setModel(new javax.swing.DefaultComboBoxModel(new String { “学生“, “教师“ }));
在你的按钮触发里添加判断
然后用switch进行匹配,也不是说不能用.getSelectedItem(),但是该方法返回的是String类型变量,不易匹配,而且匹配的时候你用来判断的标准必须和你的jComboBox的选项一直,选项里用了多少个空格,你判断的时候就要用多少空格,有的时候为了使界面更美观而多添了几个空格,而忘了改判断语句的话,你的if判断就会始终判断为false,有时候会debug很久,所以还是用
jComboBox1.getSelectedIndex()进行判定更为妥当
switch(jComboBox1.getSelectedIndex()){
case 0:
//在这里进行学生验证,sql和数据库部分我就不多说了
break;
case 1:
//在这里进行教师验证,sql和数据库部分我就不多说了
break;
}
-管理系统

JAVA:编写一个学生成绩管理系统学生的属性包括学号、姓名、年龄等


class Student{
String name;
String id;
int age;
Couse course;
}
class Course{
String coursename;
float pscourse;
float qzcourse;
float sxcourse;
float qmcourse;
float zpcourse;
}
这个要写好长时间的,定义几个类;然后实现具体的功能。用数组或者集合来存储学生信息还有成绩信息,最后定义一个测试类。你可以找我私聊,1368270359qq
-java

用java做一个学生成绩管理系统 需要哪些技术


用java做一个学生成绩管理系统,可以用到如下技术:

后台:SSH框架,不用框架的话,单纯地用JSP + Servlet也可以。
前台:html + css + js + jquery
数据库:掌握SQL语言的编写,数据库的连接。复杂的项目还需要用到存储过程。-管理系统

Java是一种可以撰写跨平台应用软件的面向对象的程序设计语言。Java 技术具有卓越的通用性、高

效性、平台移植性和安全性,广泛应用于PC、数据中心、游戏控制台、科学超级计算机、移动电话

和互联网,同时拥有全球最大的开发者专业社群。

Java由四方面组成:

1、Java编程语言,即语法。

2、Java文件格式,即各种文件夹、文件的后缀。

3、Java虚拟机(JVM),即处理*.class文件的解释器。

4、Java应用程序接口(Java API)。


如何做用java做基于web的学生成绩管理系统


Java jdk , Tomcat , mysql 或者其他的数据库 ,数据库管理工具(Navicate for mysql 等), myeclipse(尽量最新版本) 这些软件尽量为最新的 。
Tomcat配置java jdk /bin下的 JAVA_HOME , mysql 安装后设置好端口,例如: 9090 。 然后myeclipse 在 window里面,precences里面找到Tomcat,选择好安装的路径,点击确认,如何启动Tomcat就比较简单了。(这些配置网上 五花八门的,建议你买本书,照书上的去配置)。
1、 数据库分析: 需要建立表: 学生信息表,包括字段(学院,班级,学号,姓名,等其他不重要信息) ; 另一张表: 成绩表,字段包括(学号,各科目成绩,阅卷老师编号,其他不重要)。表可以自己觉得有需要随便增加
2 、 估计你没有开发经验,一些框架用的会很少,这里就看你自己学的水平了,没有其他的可以说了 。 当然这些也可以全部使用JSP做,不需要下这么多的软件 , 只要有数据库,直接使用记事本编程就行了。
-java

怎么用java做一个简单的学生管理系统


用java写的话,可以用List来实现学生管理系统:
  首先,管理系统是针对学生对象的,所以我们先把学生对象就写出来:
package bean;
public class Student {
String name;
String studentId;
String sex;
int grade;
public Student(String name,String studentId,String sex,int grade){
this.name= name;
this.studentId= studentId;
this.sex = sex;
this.grade = grade;
}
public int getGrade(){
return grade;
}
public String getName(){
return name;
}
public String getSex(){
return sex;
}
public void setGrade(int g){
this.grade = g;
}
public String getStudentId(){
return studentId;
}
}
这里面定义了一些得到当前学生对象数据的一些get方法,和成绩修改的set方法,代码很简单,就不做详细的解答。
就下来就是我们的正文了。
  虽然我们暂时不用swing来做界面,但是总得要看的过去吧,所以,先做了一个比较简单的界面:
System.out.println(“***************“);
System.out.println(“*欢迎来到学生管理系统 *“);
System.out.println(“*1:增加学生 *“);
System.out.println(“*2:删除学生 *“);
System.out.println(“*3:修改成绩 *“);
System.out.println(“*4:查询成绩 *“);
System.out.println(“***************“);
System.out.println(“您想选择的操作是:“);
这里可以看到,我们的是用一个1234来选择项目,说以不得不讲一下Java如何获取到键盘所输入的数据---------Scanner ,要使用这个,首先需要import进来一个包:
例如这里:
import java.util.*;
之后的两行代码搞定输入:
Scanner sc = new Scanner(System.in);
int choice = sc.nextInt();
接下来就是各个功能的实现:
  
package test;
import java.util.*;
import bean.Student;
public class Manager {
static List《Student》 StudentList = new LinkedList《Student》();
public static void main(String agrs){
select(StudentList);
}
private static void select(List《Student》 StudentList ){
System.out.println(“***************“);
System.out.println(“*欢迎来到学生管理系统 *“);
System.out.println(“*1:增加学生 *“);
System.out.println(“*2:删除学生 *“);
System.out.println(“*3:修改成绩 *“);
System.out.println(“*4:查询成绩 *“);
System.out.println(“***************“);
System.out.println(“您想选择的操作是:“);
Scanner sc = new Scanner(System.in);
int choice = sc.nextInt();
switch(choice){
//增加学生
case 1:
System.out.print(“请输入学生的姓名:“);
Scanner Sname = new Scanner(System.in);
String name = Sname.nextLine();
System.out.print(“请输入学生的性别:“);
Scanner Ssex = new Scanner(System.in);
String sex = Ssex.nextLine();
System.out.print(“请输入学生的学号:“);
Scanner SId = new Scanner(System.in);
String studentId = SId.nextLine();
System.out.print(“请输入学生的成绩:“);
Scanner Sgrade = new Scanner(System.in);
int grade = Sgrade.nextInt();
StudentList.add(new Student(name,studentId,sex,grade));
System.out.println(“添加成功!!!!!“);
select(StudentList);
break;
//删除学生成绩
case 2:
System.out.print(“请告诉我需要删除学生的学号:“);
Scanner Sid = new Scanner(System.in);
String SstudentId = Sid.nextLine();
boolean isfindDelete = false;
for (int i = 0; i 《 StudentList.size(); i++) {
if(SstudentId.equals(StudentList.get(i).getStudentId())){
System.out.println(“发现了该学生,正在删除...“);
StudentList.remove(i);
System.out.println(“删除成功!!!“);
isfindDelete =true;
}
}
if(!isfindDelete){
System.out.println(“抱歉,没有找到“);
}
select(StudentList);
break;
//修改学生成绩
case 3:
System.out.print(“请告诉我需要修改成绩学生的学号:“);
Scanner GId = new Scanner(System.in);
String GstudentId = GId.nextLine();
boolean isfindChange = false;
for (int j = 0; j 《 StudentList.size(); j++) {
if(GstudentId.equals(StudentList.get(j).getStudentId())){
System.out.println(“发现了该学生,正在修改...“);
System.out.println(“学生原成绩为“+StudentList.get(j).getGrade());
System.out.print(“请输入修改后学生的成绩:“);
Scanner Ggrade = new Scanner(System.in);
int grade2 = Ggrade.nextInt();
StudentList.get(j).setGrade(grade2);
System.out.println(“修改成功!!!“);
isfindChange =true;
}else{
}
}
if(!isfindChange){
System.out.println(“抱歉,没有找到“);
}
select(StudentList);
break;
//查看学生成绩
case 4:
System.out.print(“请告诉我需要查询学生的学号:“);
Scanner CId = new Scanner(System.in);
String CstudentId = CId.nextLine();
boolean isfindData = false;
for (int i = 0; i 《 StudentList.size(); i++) {
if(CstudentId.equals(StudentList.get(i).getStudentId())){
System.out.println(“名字:“+StudentList.get(i).getName());
System.out.println(“性别:“+StudentList.get(i).getSex());
System.out.println(“学号:“+StudentList.get(i).getStudentId());
System.out.println(“成绩:“+StudentList.get(i).getGrade());
isfindData = true;
}
}
if(!isfindData){
System.out.println(“抱歉,没有找到“);
}
select(StudentList);
break;
default:
System.out.println(“您输入的数字有误,请重新输入:“);
break;
}
}
}
可以看见,我把所有的实现过程全部放在select();方法中了,这样可以避免我选择完了一个操作后不能继续其他操作。大部分的操作都是依靠for循环来遍历操作,方便快捷。
-管理系统

如何用Java语言编写学生成绩管理系统


package student;
import java.util.Scanner;
public class teststudent {
public static void main(String args){
System.out.println(“************************学生成绩管理系统*********************“);
System.out.println(“请输入要管理的学生人数:“);
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
studentMassage stum = new studentMassage(n);
int flag = 1;
while(flag == 1){
System.out.println(“1.输入学生信息“);
System.out.println(“2.通过姓名查找学生信息“);
System.out.println(“3.显示全部学生信息“);
System.out.println(“4.退出系统“);
int op = sc.nextInt();
switch(op){
case 1:stum.addStudent(n);
new Scanner(System.in).nextLine();
break;
case 2:
System.out.println(“输入学生姓名:“);
String name = sc.next();
stum.FindStudent(name);
new Scanner(System.in).nextLine();
break;
case 3:
stum.showallStudent();
new Scanner(System.in).nextLine();
break;
case 4:
flag = 0;
System.out.println(“已退出系统!“);
break;
default:
System.out.println(“输入有误!“);
new Scanner(System.in).nextLine();
}
}
}
}
class Date{
int year;
int month;
int day;
/*public Date(int year,int month,int day){
this.year = year;
this.month = month;
this.day = day;
}
public Date(){}*/
public String showDate(){
return year + “/“+ month+“/“+day;
}
}
class student{
int id;
String name;
Date date;
float score;
public student(){
id = 0;
name = null;
date = null;
score = 0f;
}
public void showStudent(){
System.out.println( id + “ “ + name + “ “+ “ “ + date.showDate()+“ “+score);
}
}
class studentMassage{
private student stu;
private int flag;
public studentMassage(int n){
flag = 0;
if(stu == null){
stu = new student[n];
for(int i =0;i《n;++i){
stu[i] = new student();
}
}
}
public void addStudent(int n){
flag = 1;
Scanner sc = new Scanner(System.in);
System.out.println(“请输入“+n+“个学生信息“);
for(int i = 0 ;i《stu.length;++i){
stu[i].date = new Date();
System.out.println(“请输入第“+(i+1)+“个学生学号:“);
stu[i].id = sc.nextInt();
System.out.println(“请输入第“+(i+1)+“个学生姓名:“);
stu[i].name = sc.next();
System.out.println(“请输入第“+(i+1)+“个学生出生年份:“);
stu[i].date.year = sc.nextInt();
System.out.println(“请输入第“+(i+1)+“个学生出生月份:“);
stu[i].date.month = sc.nextInt();
System.out.println(“请输入第“+(i+1)+“个学生出生日期:“);
stu[i].date.day = sc.nextInt();
//stu[i].date = new Date(year,month,day);
System.out.println(“请输入第“+(i+1)+“个学生分数:“);
stu[i].score = sc.nextFloat();
}
}
public void FindStudent(String sname){
student find = null;
if(flag != 0){
for(int i = 0;i《stu.length;++i){
if(sname.equals(stu[i].name))
find = stu[i];
}
if(find == null)
System.out.println(“查无此人!“);
else
find.showStudent();
}else
System.out.println(“没有输入学生信息!“);
}
public void showallStudent(){
System.out.println(“所有学生的信息如下:“);
System.out.println(“学号 姓名 生日 分数“);
for(int i = 0;i《stu.length;++i){
stu[i].showStudent();
}
}
}
-java