java學生成績管理
❶ 如何用java實現學生成績管理界面
1成績管理系統------分析報告(不知如何貼數據流程圖之類的到這里,所以把相關圖片貼到空間里啦)(另:數據字典是表格形式啦,貼來這里就變了。)
一 . 引言
1.系統名稱:學生成績管理信息系統
2.開發目標:開發出一個操作簡便,界面友好,靈活實用,安全可靠的學生成績管理信息系統。
該系統的開發以教務管理人員和任課教師服務為對象,能夠提高學校對學生成績的統計分析效率,減輕教務管理人員對學生成績管理和統計的負擔,提高學校對學生成績的規范化管理。
該成績管理系統能夠及時對學生成績進行收集整理,使學校相關部門及時獲取可靠的學生成績信息,便於管理。
3.主要功能:
本系統的使用者根據其使用者------教務處管理人員和任課教師-----可分為以下幾方面:
(1)教務處管理人員登陸後,進入教務人員管理模塊,可以進行個人信息查詢,教師住處職稱工資情況的查詢,學生信息查詢,成績查詢以及退出系統等操作。
(2)教師登陸教師管理子系統,要能夠對學生成績進行許可權范圍內的錄入、添加、修改、刪除、查詢;查詢教師信息、更改個人登陸密碼、修改個人信息等;
(3)學生單科成績、全科成績的總分、平均分,最高分、最低分,排序等計算和統計實現自動化;可以按班級、按個人進行信息查詢;信息可以發布到網路,以實現數據共享;
(4)能夠自動進行錄入錯誤檢查
4.開發背景
每個學校都需要在學期末進行期末考試成績的統計分析工作,而這些工作都必須在考試結束後近一個星期的時間內完成。大量的成績數據的統計分析工作如果只靠人工來完成,費時費力,還容易出錯。隨著計算機技術的飛速發展,計算機在日常管理應用中迅速普及,利用計算機進行學生成績管理勢在必行。因此需開發出一個能滿足學校進行成績的錄入,統計,查詢,報表和列印等需求的、功能完善、安全可靠、迅速簡便的成績管理信息系統。
二. 系統目標和開發的可行性
1.系統目標:
(1)為教務處管理人員提供各學期、各年級、各班級學生的基本成績信息,以作為其進行成績匯總,分析和考績和總結評比的依據。
(2)方便各任課教師記錄,統計所帶班學生成績,提高工作效率,減輕負擔;總結經驗,提高教學質量。
(3)實現快速方便地處理大量成績數據信息,完成成績的錄入、添加、修改、刪除、統計、查詢、排序等處理要求。
(4)輸出和列印成績單和各種成績報表。
2.開發的可行性
(1)系統的名稱、功能、目標等已如前所述,此地不再重復。
(2)系統環境以及工具:
A. 軟體環境:
用戶端:Windows2000,Windows2003,Windows XP
伺服器端:WindowsNT/Windows2000及以上操作系統
編程語言:SOL
資料庫:Access2003
❷ JAVA程序設計學生成績管理
呵呵,不能參與資料庫,你可以把數據錄入完成都存入xml格式,或者json格式,然後查詢的時候在讀取就可已了
❸ 題目:學生成績管理(JAVA)
我寫好了,需要的話,私信我,發給你
參考文獻
❹ 求用Java編寫的學生成績管理系統的完整代碼,要能運行的
以下方法實現了用戶界面登陸
import java.awt.*;
import java.awt.event.*;
public class DengLuJieMian extends Frame implements ActionListener
{
Label username=new Label("用戶名:");//使用文本創建一個用戶名標簽
TextField t1=new TextField();//創建一個文本框對象
Label password=new Label("密碼:");//創建一個密碼標簽
TextField t2=new TextField();
Button b1=new Button("登陸");//創建登陸按鈕
Button b2=new Button("取消");//創建取消按鈕
public DengLuJieMian()
{
this.setTitle("學生信息管理系統");//設置窗口標題
this.setLayout(null);//設置窗口布局管理器
username.setBounds(50,40,60,20);//設置姓名標簽的初始位置
this.add(username);// 將姓名標簽組件添加到容器
t1.setBounds(120,40,80,20);// 設置文本框的初始位置
this.add(t1);// 將文本框組件添加到容器
password.setBounds(50,100,60,20);//密碼標簽的初始位置
this.add(password);//將密碼標簽組件添加到容器
t2.setBounds(120,100,80,20);//設置密碼標簽的初始位置
this.add(t2);//將密碼標簽組件添加到容器
b1.setBounds(50,150,60,20);//設置登陸按鈕的初始位置
this.add(b1);//將登陸按鈕組件添加到容器
b2.setBounds(120,150,60,20);//設置取消按鈕的初始位置
this.add(b2);// 將取消按鈕組件添加到容器
b1.addActionListener(this);//給登陸按鈕添加監聽器
b2.addActionListener(this);// 給取消按鈕添加監聽器
this.setVisible(true);//設置窗口的可見性
this.setSize(300,200);//設置窗口的大小
addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
});//通過內部類重寫關閉窗體的方法
}
public void actionPerformed(ActionEvent e)
{
if(e.getSource()==b1)//處理登陸事件
{
String name=t1.getText();
String pass=t2.getText();
if(name!=null&&pass.equals("000123"))//判斷語句
{
new StudentJieMian();
}
}
}
public static void main(String args[])//主函數
{
new DengLuJieMian();
}
}
以下方法實現了學生界面設計
import java.awt.*;
import java.awt.event.*;
class StudentJieMian extends Frame implements ActionListener
{
MenuBar m=new MenuBar();//創建菜單欄
Menu m1=new Menu("信息");//創建菜單「信息」
MenuItem m11=new MenuItem("插入");//創建「插入」的菜單項
MenuItem m12=new MenuItem("查詢");
Menu m2=new Menu("成績");//創建菜單「成績」
MenuItem m21=new MenuItem("查詢");
public StudentJieMian()
{
this.setTitle("學生界面");//設置窗口標題
this.setLayout(new CardLayout());//設置窗口布局管理器
this.setMenuBar(m);//將菜單欄組件添加到容器
m.add(m1);//將信息菜單放入菜單欄
m.add(m2);
m1.add(m11);//將「插入」菜單項添加到「信息」菜單
m1.add(m12); //將「查詢」菜單項添加到「信息」菜單
m2.add(m21); //將「查詢」菜單項添加到「成績」菜單
m11.addActionListener(this); //給「插入」菜單項添加監聽器
m12.addActionListener(this); //給「查詢」菜單項添加監聽器
m21.addActionListener(this); //給「查詢」菜單項添加監聽器
this.setVisible(true); //設置窗口的可見性
this.setSize(300,200); //設置窗口的大小
addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent e)
{
System.exit(0);//關閉窗口
}
});
}
public void actionPerformed(ActionEvent e)
{
if(e.getSource()==m11) //處理「添加信息」事件
{
new AddStudent();
}
if(e.getSource()==m12) //處理「查詢信息」事件
{
new SelectStudent();
}
if(e.getSource()==m21) //處理「查詢成績」事件
{
new ChengJiStudent();
}
}
public static void main(String args[])
{ new StudentJieMian(); //創建一個對象 }
❺ 求JAVA學生成績管理程序
import java.util.*;
public class Student
{
double a,b,c;
private static double sum;
String id;
public Student()
{
a=0;
b=0;
c=0;
sum=0;
id=null;
}
public void setId(String id)
{
this.id=id;
}
public String getId()
{ return this.id;
}
public void Sum(double s)
{
sum+=s;
}
public double getSum()
{ return this.sum;
}
public static void main(String[] args)
{
Scanner m=new Scanner(System.in);
System.out.println("請輸入學生工號:" );
String n=m.next();
Student student=new Student();
student.setId(n);
Scanner o=new Scanner(System.in);
System.out.println("請輸入學生語文成績:");
double p=o.nextDouble();
student.Sum(p);
Scanner x=new Scanner(System.in);
System.out.println("請輸入學生數學成績:");
double y=x.nextDouble();
//student.Sum(p,y);
student.Sum(y);
System.out.println("該學生總成績為:");
System.out.println(student.getSum());
}
}
Result is:
請輸入學生工號:
F3216489
請輸入學生語文成績:
89
請輸入學生數學成績:
98
該學生總成績為:
187.0
❻ 如何用Java語言編寫學生成績管理系統
寫過一個類似的給了你吧
packagestudent;
importjava.util.Scanner;
publicclassteststudent{
publicstaticvoidmain(Stringargs[]){
System.out.println("************************學生成績管理系統*********************");
System.out.println("請輸入要管理的學生人數:");
Scannersc=newScanner(System.in);
intn=sc.nextInt();
studentMassagestum=newstudentMassage(n);
intflag=1;
while(flag==1){
System.out.println("1.輸入學生信息");
System.out.println("2.通過姓名查找學生信息");
System.out.println("3.顯示全部學生信息");
System.out.println("4.退出系統");
intop=sc.nextInt();
switch(op){
case1:stum.addStudent(n);
newScanner(System.in).nextLine();
break;
case2:
System.out.println("輸入學生姓名:");
Stringname=sc.next();
stum.FindStudent(name);
newScanner(System.in).nextLine();
break;
case3:
stum.showallStudent();
newScanner(System.in).nextLine();
break;
case4:
flag=0;
System.out.println("已退出系統!");
break;
default:
System.out.println("輸入有誤!");
newScanner(System.in).nextLine();
}
}
}
}
classDate{
intyear;
intmonth;
intday;
/*publicDate(intyear,intmonth,intday){
this.year=year;
this.month=month;
this.day=day;
}
publicDate(){}*/
publicStringshowDate(){
returnyear+"/"+month+"/"+day;
}
}
classstudent{
intid;
Stringname;
Datedate;
floatscore;
publicstudent(){
id=0;
name=null;
date=null;
score=0f;
}
publicvoidshowStudent(){
System.out.println(id+""+name+""+""+date.showDate()+""+score);
}
}
classstudentMassage{
privatestudent[]stu;
privateintflag;
publicstudentMassage(intn){
flag=0;
if(stu==null){
stu=newstudent[n];
for(inti=0;i<n;++i){
stu[i]=newstudent();
}
}
}
publicvoidaddStudent(intn){
flag=1;
Scannersc=newScanner(System.in);
System.out.println("請輸入"+n+"個學生信息");
for(inti=0;i<stu.length;++i){
stu[i].date=newDate();
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=newDate(year,month,day);
System.out.println("請輸入第"+(i+1)+"個學生分數:");
stu[i].score=sc.nextFloat();
}
}
publicvoidFindStudent(Stringsname){
studentfind=null;
if(flag!=0){
for(inti=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("沒有輸入學生信息!");
}
publicvoidshowallStudent(){
System.out.println("所有學生的信息如下:");
System.out.println("學號姓名生日分數");
for(inti=0;i<stu.length;++i){
stu[i].showStudent();
}
}
}
❼ 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 學生成績管理
package Shi_Yan;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileWriter;
import java.io.InputStreamReader;
import java.io.LineNumberReader;
import java.io.PrintWriter;
import java.util.Scanner;
public class H1 {
public static void main(String args[])throws Exception{
int xh=1;
int cj=1;
int k;
String km="";
Scanner input=new Scanner(System.in);
System.out.print("1.寫入\n2.查詢\n3.退出\n請輸入你想要的操作號:");
k=input.nextInt();
if(k==1){
String outfilename="c:\\1.txt";
File fout =new File(outfilename);
PrintWriter out=new PrintWriter(new FileWriter(fout));
for(int i=0;i<=10;i++){
System.out.print("請輸入學號(1~200)(輸入0結束輸入):\n");
xh=input.nextInt();
System.out.print("請輸入科目:\n");
km=input.next();
System.out.print("請輸入成績:\n");
cj=input.nextInt();
Student std=new Student(xh,km,cj);
out.println(std.xuehao+std.kemu+std.chengji+"\n");
if(xh==0){
out.close();
break;
}
}
}
if(k==2){
System.out.print("請輸入學號(0~200):");
xh=input.nextInt();
try {
FileInputStream fis = new FileInputStream("c:\\1.txt");
InputStreamReader isr = new InputStreamReader(fis);
LineNumberReader lnr = new LineNumberReader(isr);
String s = null;
int i;
String j;
while ((s = lnr.readLine()) != null) {
j=s.substring(0,1);
if(xh/10==0){
j=s.substring(0,1);
}else
if((xh>=10)&&(xh<=99)){
j=s.substring(0,2);
}else
if((xh>=100)&&(xh<=200)){
j=s.substring(0,3);
}
i = Integer.parseInt(j);
if(i==xh){
System.out.println(s);
}
else{
continue;
}
}
}
catch (Exception e) {
e.printStackTrace();
}
}
if(k==3){
System.exit(0); //退出
}
if(k!=1&&k!=2&&k!=3){
System.out.print("ERROR");
}
}
}
class Student{
int xuehao;
String kemu;
int chengji;
final static int LEN=8;
public Student(int xuehao,String kemu,int chengji){ //定義構造函數
if(kemu.length()>LEN){
kemu=kemu.substring(0, 8);
}
else{
while(kemu.length()<LEN)
kemu=kemu+"\u0000"; //後加空格
}
this.kemu=kemu;
this.xuehao=xuehao;
this.chengji=chengji;
}
}
看看吧。。。我也菜。。。
❾ JAVA 學生成績管理 求符合下列要求的代碼
importjava.awt.Color;importjava.awt.Font;importjava.awt.Frame;importjava.awt.Label;importjava.awt.TextField;importjava.awt.Window;importjava.awt.event.ActionEvent;importjava.awt.event.ActionListener;importjava.awt.event.WindowAdapter;importjava.awt.event.WindowEvent;importjava.sql.SQLException;importjavax.swing.JButton;publicclassStmessege{Fontfont=newFont("楷體",Font.BOLD,18);privateFramem=newFrame("登陸成功界面");protectedWindowf;publicStmessege(){m.addWindowListener(newWindowAdapter(){publicvoidwindowClosing(WindowEventevt){m.setVisible(false);m.dispose();System.exit(0);}});m.setSize(460,360);m.setBackground(Color.green);m.setLayout(null);m.setLocationRelativeTo(null);Labell0=newLabel("管理員信息");Fontfont1=newFont("楷體",Font.BOLD,32);l0.setForeground(Color.blue);l0.setSize(180,50);l0.setLocation(150,30);l0.setFont(font1);finalLabell1=newLabel("姓名:");l1.setSize(60,20);l1.setLocation(10,100);l1.setFont(font);TextFieldtf1=newTextField("黃朋");tf1.setForeground(Color.blue);tf1.setBackground(Color.white);tf1.setSize(50,20);tf1.setLocation(70,100);finalLabell2=newLabel("學號:");l2.setSize(60,20);l2.setLocation(140,100);l2.setFont(font);TextFieldtf2=newTextField("111265");tf2.setForeground(Color.blue);tf2.setBackground(Color.white);tf2.setSize(60,20);tf2.setLocation(190,100);finalLabell3=newLabel("性別:");l3.setSize(60,20);l3.setLocation(280,100);l3.setFont(font);TextFieldtf3=newTextField("男");tf3.setForeground(Color.blue);tf3.setBackground(Color.white);tf3.setSize(40,20);tf3.setLocation(360,100);finalLabell4=newLabel("班級:");l4.setSize(60,20);l4.setLocation(10,170);l4.setFont(font);TextFieldtf4=newTextField("611231");tf4.setForeground(Color.blue);tf4.setBackground(Color.white);tf4.setSize(60,20);tf4.setLocation(67,170);finalLabell5=newLabel("系別:");l5.setSize(60,20);l5.setLocation(140,170);l5.setFont(font);TextFieldtf5=newTextField("計算機工程系");tf5.setForeground(Color.blue);tf5.setBackground(Color.white);tf5.setSize(80,20);tf5.setLocation(200,170);finalLabell6=newLabel("成績:");l6.setSize(60,20);l6.setLocation(280,170);l6.setFont(font);TextFieldtf6=newTextField("95");tf6.setForeground(Color.blue);tf6.setBackground(Color.white);tf6.setSize(40,20);tf6.setLocation(360,170);finalLabell7=newLabel("專業:");l7.setSize(60,20);l7.setLocation(10,230);l7.setFont(font);TextFieldtf7=newTextField("軟體技術");tf7.setForeground(Color.blue);tf7.setBackground(Color.white);tf7.setSize(60,20);tf7.setLocation(70,230);JButtonbtn1=newJButton("添加");btn1.setForeground(Color.blue);btn1.setSize(80,38);btn1.setLocation(35,300);btn1.setFont(font);btn1.addActionListener(newActionListener(){@(ActionEvente){//TODOAuto-generatedmethodstubnew插入();m.setVisible(true);}});JButtonbtn2=newJButton("查詢學生學籍信息");btn2.setForeground(Color.blue);btn2.setSize(200,38);btn2.setLocation(135,300);btn2.setFont(font);btn2.addActionListener(newActionListener(){publicvoidactionPerformed(ActionEvente){Stmessege1f;try{f=newStmessege1();f.Stmessege11();m.setVisible(true);}catch(SQLExceptione1){//TODOAuto-generatedcatchblocke1.printStackTrace();}catch(ClassNotFoundExceptione1){//TODOAuto-generatedcatchblocke1.printStackTrace();}}});JButtonbtn3=newJButton("刪除");btn3.setForeground(Color.blue);btn3.setSize(80,38);btn3.setLocation(350,300);btn3.setFont(font);btn3.addActionListener(newActionListener(){@(ActionEvente){//TODOAuto-generatedmethodstubnew刪除();//f.setVisible(false);m.setVisible(true);}});JButtonbtn4=newJButton("更新");btn4.setForeground(Color.blue);btn4.setSize(80,38);btn4.setLocation(200,230);btn4.setFont(font);btn4.addActionListener(newActionListener(){@(ActionEvente){//TODOAuto-generatedmethodstubnew更新();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);}publicstaticvoidmain(String[]args){newStmessege();}}可以仿照我的做一下,希望採納,我才一級哦
❿ 用Java實現學生成績管理系統
這個很簡單的 你可以自己先動手做做