真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

java招生系統(tǒng)代碼,的招生代碼

求java中類似學(xué)生信息管理系統(tǒng)中按學(xué)號,按姓名排序的代碼

import?java.util.ArrayList;

創(chuàng)新互聯(lián)建站是一家專業(yè)提供灌南企業(yè)網(wǎng)站建設(shè),專注與網(wǎng)站設(shè)計(jì)、做網(wǎng)站、H5頁面制作、小程序制作等業(yè)務(wù)。10年已為灌南眾多企業(yè)、政府機(jī)構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)絡(luò)公司優(yōu)惠進(jìn)行中。

import?java.util.Collections;

import?java.util.Comparator;

import?java.util.List;

public?class?Sort?{

public?static?void?main(String[]?args)?{

Student?p1?=?new?Student(1001,?"小明",?20);

Student?p2?=?new?Student(1002,?"小紅",?21);

Student?p3?=?new?Student(1003,?"小黑",?19);

ListStudent?list?=?new?ArrayListStudent();

list.add(p1);

list.add(p2);

list.add(p3);

Collections.sort(list,?new?ComparatorStudent()?{

/*

?*?int?compare(Student?o1,?Student?o2)?返回一個(gè)基本類型的整型,?返回負(fù)數(shù)表示:o1?小于o2,

?*?返回0?表示:o1和o2相等,?返回正數(shù)表示:o1大于o2。

?*/

public?int?compare(Student?o1,?Student?o2)?{

//?按照學(xué)生的學(xué)號進(jìn)行升序排列

if?(o1.getId()??o2.getId())?{

return?1;

}

if?(o1.getId()?==?o2.getId())?{

return?0;

}

return?-1;

}

});

write(list);

System.out.println("---------------------");

Collections.sort(list,?new?ComparatorStudent()?{

/*

?*?int?compare(Student?o1,?Student?o2)?返回一個(gè)基本類型的整型,?返回負(fù)數(shù)表示:o1?小于o2,

?*?返回0?表示:o1和o2相等,?返回正數(shù)表示:o1大于o2。

?*/

public?int?compare(Student?o1,?Student?o2)?{

//?按照學(xué)生的年齡進(jìn)行升序排列

if?(o1.getAge()??o2.getAge())?{

return?1;

}

if?(o1.getAge()?==?o2.getAge())?{

return?0;

}

return?-1;

}

});

write(list);

}

public?static?void?write(ListStudent?list)?{

for?(Student?s?:?list)?{

System.out.println(s.getId()?+?"\t"?+?s.getName()?+?"\t"

+?s.getAge());

}

}

}

public?class?Student?{

private?int?id?;

private?String?name;

private?int?age;

//構(gòu)造方法

public?Student(int?id,String?name,int?age){

this.id?=?id;

this.name?=?name;

this.age?=?age;

}

public?int?getId()?{

return?id;

}

public?void?setId(int?id)?{

this.id?=?id;

}

public?String?getName()?{

return?name;

}

public?void?setName(String?name)?{

this.name?=?name;

}

public?int?getAge()?{

return?age;

}

public?void?setAge(int?age)?{

this.age?=?age;

}

}

簡單的JAVA學(xué)生管理系統(tǒng)代碼···

lListStudent students = new ArrayListStudent();

BufferedReader br = new BufferedReader(new FileReader("D:\student.txt"));

String tmpStr = br.readLine();

while(tmpStr != null){

int firstIndex = tmpStr.indexOf(" ");

int secondIndex = tmpStr.indexOf(" ",firstIndex + 1);

int thirdIndex = tmpStr.indexOf(" ", secondIndex + 1);

int forthIndex = tmpStr.indexOf(" ", thirdIndex + 1);

Integer stuId = Integer.parseInt(tmpStr.substring(0,firstIndex));

String stuName = tmpStr.substring(firstIndex + 1,secondIndex);

Integer stuYW = Integer.parseInt(tmpStr.substring(secondIndex + 1,thirdIndex));

Integer stuSX = Integer.parseInt(tmpStr.substring(thirdIndex + 1,forthIndex));

Integer stuYY = Integer.parseInt(tmpStr.substring(forthIndex + 1));

Student student = new Student();

student.setStuId(stuId);

student.setStuName(stuName);

student.setStuYW(stuYW);

student.setStuSX(stuSX);

student.setStuYY(stuYY);

students.add(student);

tmpStr.readLine();

}

//創(chuàng)建一個(gè)學(xué)生實(shí)體類 封裝stuId stuName stuYW stuSx stuYY 這5個(gè)屬性。。。

//已經(jīng)幫你把數(shù)據(jù)拆分出來 并以Student 對象的形式放入集合中了 接下來 給分吧 哇咔咔

求用Java編寫的學(xué)生成績管理系統(tǒng)的完整代碼

package?jdbcproj;

import?java.sql.*;

import?java.awt.BorderLayout;

import?java.awt.EventQueue;

import?javax.swing.JFrame;

import?javax.swing.JPanel;

import?javax.swing.border.EmptyBorder;

import?javax.swing.JLabel;

import?javax.swing.JOptionPane;

import?javax.swing.JTextField;

import?javax.swing.JButton;

import?java.awt.event.ActionListener;

import?java.sql.Connection;

import?java.sql.PreparedStatement;

import?java.sql.SQLException;

import?java.awt.event.ActionEvent;

public?class?MainFrame?extends?JFrame?{

private?JPanel?contentPane;

private?JTextField?txtname;

private?JTextField?txtpassword;

/**

?*?Launch?the?application.

?*/

public?static?void?main(String[]?args)?{

EventQueue.invokeLater(new?Runnable()?{

public?void?run()?{

try?{

MainFrame?frame?=?new?MainFrame();

frame.setVisible(true);

}?catch?(Exception?e)?{

e.printStackTrace();

}

}

});

}

/**

?*?Create?the?frame.

?*/

public?MainFrame()?{

setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

setBounds(100,?100,?661,?399);

contentPane?=?new?JPanel();

contentPane.setBorder(new?EmptyBorder(5,?5,?5,?5));

setContentPane(contentPane);

contentPane.setLayout(null);

JLabel?lblNewLabel?=?new?JLabel("\u7528\u6237\u540D");

lblNewLabel.setBounds(114,?51,?72,?18);

contentPane.add(lblNewLabel);

JLabel?lblNewLabel_1?=?new?JLabel("\u5BC6\u7801");

lblNewLabel_1.setBounds(114,?106,?72,?18);

contentPane.add(lblNewLabel_1);

txtname?=?new?JTextField();

txtname.setBounds(261,?48,?86,?24);

contentPane.add(txtname);

txtname.setColumns(10);

txtpassword?=?new?JTextField();

txtpassword.setBounds(261,?103,?86,?24);

contentPane.add(txtpassword);

txtpassword.setColumns(10);

JButton?btnadd?=?new?JButton("\u589E\u52A0");

btnadd.addActionListener(new?ActionListener()?{

public?void?actionPerformed(ActionEvent?e)?{

if(txtname.getText().equals("")||txtpassword.getText().equals(""))

{

JOptionPane.showMessageDialog(getContentPane(),?"用戶名和密碼不能為空","提示信息框",JOptionPane.WARNING_MESSAGE);

}

else{

Users?u=new?Users();

u.setPwd(txtpassword.getText());

u.setUsername(txtname.getText());

UserDAO?usdo=new?UserDAO();

usdo.addUser(u);

}

}

});

btnadd.setBounds(45,?205,?113,?27);

contentPane.add(btnadd);

JButton?btndelete?=?new?JButton("\u5220\u9664");

btndelete.addActionListener(new?ActionListener()?{

public?void?actionPerformed(ActionEvent?arg0)?{

if(txtname.getText().equals(""))

{

JOptionPane.showMessageDialog(getContentPane(),?"用戶名不能為空","提示信息框",JOptionPane.WARNING_MESSAGE);

}

else{

UserDAO?usdo=new?UserDAO();

usdo.delUser(txtname.getText());;

}

}

});

btndelete.setBounds(172,?205,?113,?27);

contentPane.add(btndelete);

JButton?btnupdate?=?new?JButton("\u4FEE\u6539");

btnupdate.addActionListener(new?ActionListener()?{

public?void?actionPerformed(ActionEvent?e)?{

if(txtname.getText().equals("")||txtpassword.getText().equals(""))

{

JOptionPane.showMessageDialog(getContentPane(),?"用戶名和密碼不能為空","提示信息框",JOptionPane.WARNING_MESSAGE);

}

else{

Users?u=new?Users();

u.setPwd(txtpassword.getText());

u.setUsername(txtname.getText());

UserDAO?usdo=new?UserDAO();

usdo.updateUser(u);;

}

}

});

btnupdate.setBounds(300,?205,?113,?27);

contentPane.add(btnupdate);

JButton?btnfind?=?new?JButton("\u67E5\u8BE2");

btnfind.addActionListener(new?ActionListener()?{

public?void?actionPerformed(ActionEvent?e)?{

if(txtname.getText().equals(""))

{

JOptionPane.showMessageDialog(getContentPane(),?"用戶名不能為空","提示信息框",JOptionPane.WARNING_MESSAGE);

}

else{

Users?u=new?Users();

UserDAO?usdo=new?UserDAO();

u=usdo.findUser(txtname.getText(),?txtpassword.getText());

if(u!=null){

JOptionPane.showMessageDialog(getContentPane(),?"該用戶存在!","提示信息框",JOptionPane.WARNING_MESSAGE);

}

else{

JOptionPane.showMessageDialog(getContentPane(),?"該用戶不存在!","提示信息框",JOptionPane.WARNING_MESSAGE);

}

}

}

});

btnfind.setBounds(427,?205,?113,?27);

contentPane.add(btnfind);

//記得要寫這個(gè)

setVisible(true);

}

}

求用Java編寫的學(xué)生成績管理系統(tǒng)的完整代碼,要能運(yùn)行的

以下方法實(shí)現(xiàn)了用戶界面登陸

import java.awt.*;

import java.awt.event.*;

public class DengLuJieMian extends Frame implements ActionListener

{

Label username=new Label("用戶名:");//使用文本創(chuàng)建一個(gè)用戶名標(biāo)簽

TextField t1=new TextField();//創(chuàng)建一個(gè)文本框?qū)ο?/p>

Label password=new Label("密碼:");//創(chuàng)建一個(gè)密碼標(biāo)簽

TextField t2=new TextField();

Button b1=new Button("登陸");//創(chuàng)建登陸按鈕

Button b2=new Button("取消");//創(chuàng)建取消按鈕

public DengLuJieMian()

{

this.setTitle("學(xué)生信息管理系統(tǒng)");//設(shè)置窗口標(biāo)題

this.setLayout(null);//設(shè)置窗口布局管理器

username.setBounds(50,40,60,20);//設(shè)置姓名標(biāo)簽的初始位置

this.add(username);// 將姓名標(biāo)簽組件添加到容器

t1.setBounds(120,40,80,20);// 設(shè)置文本框的初始位置

this.add(t1);// 將文本框組件添加到容器

password.setBounds(50,100,60,20);//密碼標(biāo)簽的初始位置

this.add(password);//將密碼標(biāo)簽組件添加到容器

t2.setBounds(120,100,80,20);//設(shè)置密碼標(biāo)簽的初始位置

this.add(t2);//將密碼標(biāo)簽組件添加到容器

b1.setBounds(50,150,60,20);//設(shè)置登陸按鈕的初始位置

this.add(b1);//將登陸按鈕組件添加到容器

b2.setBounds(120,150,60,20);//設(shè)置取消按鈕的初始位置

this.add(b2);// 將取消按鈕組件添加到容器

b1.addActionListener(this);//給登陸按鈕添加監(jiān)聽器

b2.addActionListener(this);// 給取消按鈕添加監(jiān)聽器

this.setVisible(true);//設(shè)置窗口的可見性

this.setSize(300,200);//設(shè)置窗口的大小

addWindowListener(new WindowAdapter()

{

public void windowClosing(WindowEvent e)

{

System.exit(0);

}

});//通過內(nèi)部類重寫關(guān)閉窗體的方法

}

public void actionPerformed(ActionEvent e)

{

if(e.getSource()==b1)//處理登陸事件

{

String name=t1.getText();

String pass=t2.getText();

if(name!=nullpass.equals("000123"))//判斷語句

{

new StudentJieMian();

}

}

}

public static void main(String args[])//主函數(shù)

{

new DengLuJieMian();

}

}

以下方法實(shí)現(xiàn)了學(xué)生界面設(shè)計(jì)

import java.awt.*;

import java.awt.event.*;

class StudentJieMian extends Frame implements ActionListener

{

MenuBar m=new MenuBar();//創(chuàng)建菜單欄

Menu m1=new Menu("信息");//創(chuàng)建菜單“信息”

MenuItem m11=new MenuItem("插入");//創(chuàng)建“插入”的菜單項(xiàng)

MenuItem m12=new MenuItem("查詢");

Menu m2=new Menu("成績");//創(chuàng)建菜單“成績”

MenuItem m21=new MenuItem("查詢");

public StudentJieMian()

{

this.setTitle("學(xué)生界面");//設(shè)置窗口標(biāo)題

this.setLayout(new CardLayout());//設(shè)置窗口布局管理器

this.setMenuBar(m);//將菜單欄組件添加到容器

m.add(m1);//將信息菜單放入菜單欄

m.add(m2);

m1.add(m11);//將“插入”菜單項(xiàng)添加到“信息”菜單

m1.add(m12); //將“查詢”菜單項(xiàng)添加到“信息”菜單

m2.add(m21); //將“查詢”菜單項(xiàng)添加到“成績”菜單

m11.addActionListener(this); //給“插入”菜單項(xiàng)添加監(jiān)聽器

m12.addActionListener(this); //給“查詢”菜單項(xiàng)添加監(jiān)聽器

m21.addActionListener(this); //給“查詢”菜單項(xiàng)添加監(jiān)聽器

this.setVisible(true); //設(shè)置窗口的可見性

this.setSize(300,200); //設(shè)置窗口的大小

addWindowListener(new WindowAdapter()

{

public void windowClosing(WindowEvent e)

{

System.exit(0);//關(guān)閉窗口

}

});

}

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(); //創(chuàng)建一個(gè)對象 }


分享題目:java招生系統(tǒng)代碼,的招生代碼
本文地址:http://weahome.cn/article/hohicd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部