Khoá học lập trình Java Core nâng cao Quản lý thông tin sinh & lưu object file - Java nâng cao
- 5.0/5.0
- 2k Đăng ký
- Học lập trình
- Tiếng việt
Thông tin khóa học
Viết chương trình quản lý sinh viên. Mỗi đối tượng sinh viên có các thuộc tính sau: id, name, age, address và gpa (điểm trung bình). Yêu cầu: tạo ra một menu với các chức năng sau:
/****************************************/
1. Add student.
2. Edit student by id.
3. Delete student by id.
4. Sort student by gpa.
5. Sort student by name.
6. Show student.
7. Lưu thông tin sv vào file student.obj
8. Đọc thông tin sv từ file student.obj và hiển thị ra màn hình
0. Exit.
/****************************************/
Đăng nhập để làm bài kiểm tra
Chưa có kết quả nào trước đó
Chương trình
Phản hồi từ học viên
5
(Dựa trên đánh giá ngày hôm nay)
Lê Sỹ Khai
2021-09-13 16:32:31
#Main.java
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package studentmanager1;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
/**
*
* @author LE KHAI
*/
public class Main {
public static void main(String[] args) {
StudentController st = new StudentController();
int choice;
do {
showMenu();
choice = Integer.parseInt((new Scanner(System.in)).nextLine());
switch(choice){
case 1:
st.addStudent();
break;
case 2:
st.editStudentById();
break;
case 3:
st.deleteStudentById();
break;
case 4:
st.sortStudentByGpa();
break;
case 5:
st.sortStudentByName();
break;
case 6:
st.showStudent();
break;
case 7:
st.saveFileStudentObj();
break;
case 8:
st.readFileObj();
break;
case 0:
System.out.println("Thoat");
break;
default:
System.out.println("Nhap sai. Nhap lai lua chon: ");
break;
}
} while (choice != 0);
}
private static void showMenu() {
System.out.println("1. Add student");
System.out.println("2. Edit student by id");
System.out.println("3. Delete student by id");
System.out.println("4. Sort student by gpa");
System.out.println("5. Sort student by name");
System.out.println("6. Show student");
System.out.println("7. Luu thong tin file student.obj");
System.out.println("8. Doc thong tin tu file obj và hien thi ra man hinh");
System.out.println("0. Exit");
System.out.println("\nNhap lua chon cua ban: ");
}
}
#Student.java
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package studentmanager1;
import java.io.Serializable;
import java.util.Scanner;
/**
*
* @author LE KHAI
*/
public class Student implements Serializable{
String id, name, address;
int age;
double gpa;
public Student() {
}
public Student(String id, String name, String address, int age, double gpa) {
this.id = id;
this.name = name;
this.address = address;
this.age = age;
this.gpa = gpa;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public double getGpa() {
return gpa;
}
public void setGpa(double gpa) {
this.gpa = gpa;
}
public void input(){
Scanner scan = new Scanner(System.in);
System.out.println("Nhap id: ");
id = scan.nextLine();
System.out.println("Nhap ten: ");
name = scan.nextLine();
System.out.println("Nhap tuoi: ");
age =Integer.parseInt(scan.nextLine());
System.out.println("Nhap dia chi: ");
address = scan.nextLine();
System.out.println("Nhap diem trung binh: ");
gpa = Double.parseDouble(scan.nextLine());
}
public void show(){
System.out.println(String.format("Id: %s, Ten: %s, Tuoi: %d, Dia Chi: %s, Diem Trung Binh: %.1f",
id, name, age, address, gpa));
}
@Override
public String toString() {
return "id=" + id + ", name=" + name + ", address=" + address + ", age=" + age + ", gpa=" + gpa + "\n";
}
}
#StudentController.java
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package studentmanager1;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
import java.util.Scanner;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
*
* @author LE KHAI
*/
public class StudentController {
List<Student> listStudent = new ArrayList<>();
public void addStudent() {
System.out.println("Nhap so luong muon them: ");
int n = Integer.parseInt((new Scanner(System.in)).nextLine());
for (int i = 0; i < n; i++) {
Student student = new Student();
student.input();
listStudent.add(student);
}
System.out.println("Da them thanh cong\n");
}
public void editStudentById(){
boolean isExisted = false;
System.out.println("Nhap Id can sua: ");
String findId = (new Scanner(System.in)).nextLine();
for (Student student : listStudent) {
if (student.getId().equals(findId)) {
isExisted = true;
student.input();
System.out.println("Da sua thanh cong\n");
}
}
if(!isExisted){
System.out.println("Khong ton tai id: "+findId);
}
}
public void deleteStudentById(){
Boolean isExisted = false;
System.out.println("Nhap Id can xoa: ");
String deleteId = (new Scanner(System.in)).nextLine();
for (Student student : listStudent) {
if(student.getId().equals(deleteId)){
isExisted = true;
listStudent.remove(student);
System.out.println("Da xoa id: "+deleteId);
}
}
if(!isExisted){
System.out.println("Khong ton tai Id: "+deleteId);
}
}
public void sortStudentByGpa() {
Collections.sort(listStudent, new Comparator<Student>(){
@Override
public int compare(Student o1, Student o2) {
return o1.getGpa() > o2.getGpa() ? 1 : -1 ;
}
});
System.out.println("Sort student by gpa succcess! ");
}
public void sortStudentByName() {
Collections.sort(listStudent, new Comparator<Student>(){
@Override
public int compare(Student o1, Student o2) {
return o1.getName().compareToIgnoreCase(o2.getName());
}
});
System.out.println("Sort student by name succcess! ");
}
public void showStudent(){
System.out.println("Danh sach sinh vien: ");
for (Student student : listStudent) {
student.show();
}
}
public void saveFileStudentObj() {
FileOutputStream fos = null;
ObjectOutputStream oos = null;
try {
fos = new FileOutputStream("student.obj");
oos = new ObjectOutputStream(fos);
oos.writeObject(listStudent);
} catch (FileNotFoundException ex) {
Logger.getLogger(StudentController.class.getName()).log(Level.SEVERE, null, ex);
} catch (IOException ex) {
Logger.getLogger(StudentController.class.getName()).log(Level.SEVERE, null, ex);
}finally{
if (fos != null) {
try {
fos.close();
} catch (IOException ex) {
Logger.getLogger(StudentController.class.getName()).log(Level.SEVERE, null, ex);
}
}
if (oos != null) {
try {
oos.close();
} catch (IOException ex) {
Logger.getLogger(StudentController.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
System.out.println("Save file success!");
}
public void readFileObj() {
FileInputStream fis = null;
ObjectInputStream ois = null;
try {
fis = new FileInputStream("student.obj");
ois = new ObjectInputStream(fis);
List<Student> dataList = (List<Student>)ois.readObject();
for (Student student : dataList) {
System.out.println(student.toString());
}
} catch (FileNotFoundException ex) {
Logger.getLogger(StudentController.class.getName()).log(Level.SEVERE, null, ex);
} catch (IOException ex) {
Logger.getLogger(StudentController.class.getName()).log(Level.SEVERE, null, ex);
} catch (ClassNotFoundException ex) {
Logger.getLogger(StudentController.class.getName()).log(Level.SEVERE, null, ex);
}finally{
if (fis != null) {
try {
fis.close();
} catch (IOException ex) {
Logger.getLogger(StudentController.class.getName()).log(Level.SEVERE, null, ex);
}
}
if (ois != null) {
try {
ois.close();
} catch (IOException ex) {
Logger.getLogger(StudentController.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
}
}
Hieu Ngo
2021-09-08 02:41:57
#Main.java
import java.io.*;
import java.util.*;
public class Main {
public static void main(String [] args) {
int x;
List<Student> students;
students = new ArrayList<>();
do {
System.out.println("1. Add student.");
System.out.println("2. Edit student by id.");
System.out.println("3. Delete student by id.");
System.out.println("4. Sort student by gpa.");
System.out.println("5. Sort student by name.");
System.out.println("6. Show student.");
System.out.println("7. Lưu thông tin sv vào file student.obj");
System.out.println("8. Đọc thông tin sv từ file student.obj và hiển thị ra màn hình");
System.out.println("0. Exit.");
System.out.println("Your choice:");
x = (new Scanner(System.in)).nextInt();
switch (x) {
case 1:
System.out.println("Enter number of student");
int n = (new Scanner(System.in)).nextInt();
for(int i =0; i<n ;i++) {
Student student = new Student();
student.input();
students.add(student);
}
break;
case 2:
boolean isFind = false;
System.out.println("Nhap id can sua:");
String findId = (new Scanner(System.in)).next();
for(Student student : students) {
if(student.getId().equals(findId)) {
student.input();
isFind = true;
break;
}
}
if(!isFind){
System.out.println("Khong co sinh vien nao co id = "+ findId);
}
break;
case 3:
isFind = false;
System.out.println("Nhap id can xoa");
String deleteId = (new Scanner(System.in)).nextLine();
for(Student deleteStudent : students) {
if(deleteStudent.getId().equals(deleteId)) {
isFind = true;
students.remove(deleteStudent);
break;
}
}
if(!isFind){
System.out.println("Khong co sinh vien nao co id = "+ deleteId);
}
break;
case 4:
Collections.sort(students, new Comparator<Student>() {
@Override
public int compare(Student o1, Student o2) {
if(o1.getGpa() < o1.getGpa()) {
return 1;
}
return -1;
}
});
System.out.println("Sap xep theo GPA thanh cong....");
break;
case 5:
Collections.sort(students, new Comparator<Student>() {
@Override
public int compare(Student o1, Student o2) {
return o1.getName().compareTo(o2.getName());
}
});
System.out.println("Sap xep theo ten thanh cong....");
break;
case 6 :
for (Student student : students) {
student.display();
}
break;
case 7:
FileOutputStream fos = null;
ObjectOutputStream oos = null;
try {
fos = new FileOutputStream("data.obj");
oos = new ObjectOutputStream(fos);
oos.writeObject(students);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (fos != null) {
try {
fos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (oos != null) {
try {
oos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
break;
case 8:
FileInputStream fis = null;
ObjectInputStream ois = null;
try {
fis = new FileInputStream("data.obj");
ois = new ObjectInputStream(fis);
students = (List<Student>) ois.readObject();
for (Student student : students) {
student.display();
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (ClassNotFoundException e) {
e.printStackTrace();
} finally {
if(fis!=null) {
try {
fis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if(ois!=null) {
try {
ois.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
break;
case 0:
return;
}
} while (x>=0 && x <= 8);
}
}
#Student.java
import java.io.Serializable;
import java.util.Scanner;
public class Student implements Serializable {
private String id, name, address;
private Integer age;
private Float gpa;
public Student() {
}
public Student(String id, String name, String address, Integer age, Float gpa) {
this.id = id;
this.name = name;
this.address = address;
this.age = age;
this.gpa = gpa;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public Integer getAge() {
return age;
}
public void setAge(Integer age) {
this.age = age;
}
public Float getGpa() {
return gpa;
}
public void setGpa(Float gpa) {
this.gpa = gpa;
}
public Scanner getScanner() {
return new Scanner(System.in);
}
public void input() {
System.out.println("Enter id:");
this.id = getScanner().nextLine();
System.out.println("Enter name:");
this.name = getScanner().nextLine();
System.out.println("Enter age:");
this.age = getScanner().nextInt();
System.out.println("Address:");
this.address = getScanner().nextLine();
System.out.println("GPA :");
this.gpa = getScanner().nextFloat();
}
public void display() {
System.out.println(String.format("id = %s, name= %s, age=%d, address=%s, GPA=%.2f",this.id,this.name,this.age,this.address,this.gpa));
}
}
GokiSoft.com
2021-08-17 13:03:57
#Utility.java
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package java2.lesson03.bt1052;
import java.util.Scanner;
/**
*
* @author Diep.Tran
*/
public class Utility {
public static int scanInt(Scanner scan) {
int value;
while(true) {
try {
value = Integer.parseInt(scan.nextLine());
break;
} catch(NumberFormatException e) {
System.out.println("Nhap lai: ");
}
}
return value;
}
public static float scanFloat(Scanner scan) {
float value;
while(true) {
try {
value = Float.parseFloat(scan.nextLine());
break;
} catch(NumberFormatException e) {
System.out.println("Nhap lai: ");
}
}
return value;
}
}
#Student.java
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package java2.lesson03.bt1052;
import java.io.Serializable;
import java.util.Scanner;
/**
*
* @author Diep.Tran
*/
public class Student implements Serializable{
int id, age;
String name, address;
float gpa;
public Student() {
}
public Student(int id, int age, String name, String address, float gpa) {
this.id = id;
this.age = age;
this.name = name;
this.address = address;
this.gpa = gpa;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public float getGpa() {
return gpa;
}
public void setGpa(float gpa) {
this.gpa = gpa;
}
@Override
public String toString() {
return "id=" + id + ", age=" + age + ", name=" + name + ", address=" + address + ", gpa=" + gpa;
}
public void display() {
System.out.println(this);
}
public void edit() {
Scanner scan = new Scanner(System.in);
System.out.println("Nhap Tuoi: ");
age = Utility.scanInt(scan);
System.out.println("Nhap Ten: ");
name = scan.nextLine();
System.out.println("Nhap Dia Chi: ");
address = scan.nextLine();
System.out.println("Nhap Diem GPA: ");
gpa = Utility.scanFloat(scan);
}
public void input() {
Scanner scan = new Scanner(System.in);
System.out.println("Nhap ID: ");
id = Utility.scanInt(scan);
edit();
}
}
#Main.java
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package java2.lesson03.bt1052;
import java.util.Scanner;
/**
*
* @author Diep.Tran
*/
public class Main {
public static void main(String[] args) {
DataController controller = DataController.getInstance();
Scanner scan = new Scanner(System.in);
int choose;
do {
showMenu();
choose = Utility.scanInt(scan);
switch (choose) {
case 1:
controller.input();
break;
case 2:
controller.display();
break;
case 3:
controller.edit();
break;
case 4:
controller.delete();
break;
case 5:
controller.sortByGpa();
controller.display();
break;
case 6:
controller.sortByName();
controller.display();
break;
case 7:
controller.saveFile();
break;
case 8:
controller.readFile();
controller.display();
break;
case 9:
System.out.println("Thoat!!!");
break;
default:
System.out.println("Nhap sai!!!");
break;
}
} while(choose != 9);
}
static void showMenu() {
System.out.println("1. Nhap sinh vien");
System.out.println("2. Hien thi sinh vien");
System.out.println("3. Sua sinh vien theo ID");
System.out.println("4. Xoa sinh vien theo ID");
System.out.println("5. Sap xep theo GPA");
System.out.println("6. Sap xep theo ten");
System.out.println("7. Luu students.obj");
System.out.println("8. Doc du lieu students.obj");
System.out.println("9. Thoat!!!");
System.out.println("Chon: ");
}
}
#DataController.java
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package java2.lesson03.bt1052;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
import java.util.Scanner;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* Singleton
* @author Diep.Tran
*/
public class DataController {
List<Student> studentList;
Scanner scan;
private static DataController instance = null;
private DataController() {
studentList = new ArrayList<>();
scan = new Scanner(System.in);
}
public static DataController getInstance() {
if(instance == null) {
instance = new DataController();
}
return instance;
}
public void input() {
System.out.println("Nhap so sinh vien can them: ");
int N = Utility.scanInt(scan);
for (int i = 0; i < N; i++) {
Student std = new Student();
std.input();
studentList.add(std);
}
}
public void display() {
System.out.println("Thong tin sinh vien: ");
studentList.forEach(student -> {
student.display();
});
}
public void edit() {
System.out.println("Nhap id can sua: ");
int id = Utility.scanInt(scan);
boolean isFind = false;
for (Student student : studentList) {
if(student.getId() == id) {
//thuc hien sua du lieu
isFind = true;
student.edit();
break;
}
}
if(!isFind) {
System.out.println("Khong tim thay sinh vien co id = " + id);
}
}
public void delete() {
System.out.println("Nhap id can xoa: ");
int id = Utility.scanInt(scan);
boolean isFind = false;
for (Student student : studentList) {
if(student.getId() == id) {
//thuc hien sua du lieu
isFind = true;
studentList.remove(student);
break;
}
}
if(!isFind) {
System.out.println("Khong tim thay sinh vien co id = " + id);
}
}
public void sortByGpa() {
Collections.sort(studentList, new Comparator<Student>() {
@Override
public int compare(Student o1, Student o2) {
if(o1.getGpa() < o2.getGpa()) {
return -1;
}
return 1;
}
});
System.out.println("Sap xep theo GPA thanh cong ...");
}
public void sortByName() {
Collections.sort(studentList, new Comparator<Student>() {
@Override
public int compare(Student o1, Student o2) {
return o1.getName().compareToIgnoreCase(o2.getName());
}
});
System.out.println("Sap xep theo Name thanh cong ...");
}
public void saveFile() {
//Mode ghi du lieu.
System.out.println("Chon che do ghi: ");
System.out.println("1. Ghi them");
System.out.println("2. Ghi de");
System.out.println("Chon: ");
int choose = Utility.scanInt(scan);
boolean append = false;
if(choose == 1) {
append = true;
}
//THuc hien luu thong tin du lieu
FileOutputStream fos = null;
ObjectOutputStream oos = null;
try {
fos = new FileOutputStream("students.obj", append);
oos = new ObjectOutputStream(fos);
for (Student student : studentList) {
oos.writeObject(student);
}
} catch (FileNotFoundException ex) {
Logger.getLogger(DataController.class.getName()).log(Level.SEVERE, null, ex);
} catch (IOException ex) {
Logger.getLogger(DataController.class.getName()).log(Level.SEVERE, null, ex);
} finally {
if(fos != null) {
try {
fos.close();
} catch (IOException ex) {
Logger.getLogger(DataController.class.getName()).log(Level.SEVERE, null, ex);
}
}
if(oos != null) {
try {
oos.close();
} catch (IOException ex) {
Logger.getLogger(DataController.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
System.out.println("Luu thanh cong " + studentList.size() + " sinh vien");
}
public void readFile() {
FileInputStream fis = null;
ObjectInputStream ois = null;
try {
fis = new FileInputStream("students.obj");
ois = new ObjectInputStream(fis);
while(true) {
try {
Student std = (Student) ois.readObject();
studentList.add(std);
} catch(Exception e) {
break;
}
}
} catch (FileNotFoundException ex) {
Logger.getLogger(DataController.class.getName()).log(Level.SEVERE, null, ex);
} catch (IOException ex) {
Logger.getLogger(DataController.class.getName()).log(Level.SEVERE, null, ex);
} finally {
if(fis != null) {
try {
fis.close();
} catch (IOException ex) {
Logger.getLogger(DataController.class.getName()).log(Level.SEVERE, null, ex);
}
}
if(ois != null) {
try {
ois.close();
} catch (IOException ex) {
Logger.getLogger(DataController.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
System.out.println("Thuc hien doc xong du lieu...");
}
}
Trần Văn Điệp
2020-03-25 05:36:54
Source Code
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package bt18;
import java.io.Serializable;
import java.util.Scanner;
/**
*
* @author teacher
*/
public class Student implements Serializable{
String fullname;
int id;
String address;
int age;
float gpa;
public Student() {
}
public Student(String fullname, int id, String address, int age, float gpa) {
this.fullname = fullname;
this.id = id;
this.address = address;
this.age = age;
this.gpa = gpa;
}
public String getFullname() {
return fullname;
}
public void setFullname(String fullname) {
this.fullname = fullname;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
public float getGpa() {
return gpa;
}
public void setGpa(float gpa) {
this.gpa = gpa;
}
@Override
public String toString() {
return "Student{" + "fullname=" + fullname + ", id=" + id + ", address=" + address + ", age=" + age + ", gpa=" + gpa + '}';
}
public void display() {
System.out.println(toString());
}
public void input() {
Scanner input = new Scanner(System.in);
System.out.println("Nhap ID : ");
id = Integer.parseInt(input.nextLine());
inputWithoutId();
}
public void inputWithoutId() {
Scanner input = new Scanner(System.in);
System.out.println("Nhap ten : ");
fullname = input.nextLine();
System.out.println("Nhap dia chi : ");
address = input.nextLine();
System.out.println("Nhap tuoi : ");
age = Integer.parseInt(input.nextLine());
System.out.println("Nhap diem trung binh : ");
gpa = Float.parseFloat(input.nextLine());
}
}
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package bt18;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
import java.util.Scanner;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
*
* @author teacher
*/
public class Main {
static List<Student> studentList = new ArrayList<>();
static Scanner input = new Scanner(System.in);
public static void main(String[] args) {
int choose;
do {
showMenu();
choose = Integer.parseInt(input.nextLine());
switch (choose) {
case 1:
input();
break;
case 2:
editById();
break;
case 3:
deleteById();
break;
case 4:
sortByGpa();
break;
case 5:
sortByName();
break;
case 6:
showAll();
break;
case 7:
saveIntoFile();
break;
case 8:
readDataFromFile();
break;
case 9:
System.out.println("Exit!!!");
break;
default:
System.out.println("Input failed!");
break;
}
} while (choose != 9);
}
static void input() {
System.out.println("Nhap so sinh vien can them : ");
int n = Integer.parseInt(input.nextLine());
for (int i = 0; i < n; i++) {
Student std = new Student();
std.input();
studentList.add(std);
}
}
static void editById() {
System.out.println("Nhap ID can sua : ");
int id = Integer.parseInt(input.nextLine());
for (Student student : studentList) {
if (student.getId() == id) {
//sua
student.inputWithoutId();
break;
}
}
}
static void deleteById() {
System.out.println("Nhap ID can xoa : ");
int id = Integer.parseInt(input.nextLine());
for (Student student : studentList) {
if (student.getId() == id) {
//sua
studentList.remove(student);
break;
}
}
}
static void sortByGpa() {
Collections.sort(studentList, new Comparator<Student>() {
@Override
public int compare(Student o1, Student o2) {
return (o1.getGpa() > o2.getGpa()) ? 1 : -1;
}
});
}
static void sortByName() {
Collections.sort(studentList, new Comparator<Student>() {
@Override
public int compare(Student o1, Student o2) {
return o1.getFullname().compareTo(o2.getFullname());
}
});
}
static void showAll() {
for (Student student : studentList) {
student.display();
}
}
static void saveIntoFile() {
FileOutputStream fos = null;
ObjectOutputStream oos = null;
try {
fos = new FileOutputStream("student.dat");
oos = new ObjectOutputStream(fos);
oos.writeObject(studentList);
} catch (FileNotFoundException ex) {
Logger.getLogger(Main.class.getName()).log(Level.SEVERE, null, ex);
} catch (IOException ex) {
Logger.getLogger(Main.class.getName()).log(Level.SEVERE, null, ex);
} finally {
if (fos != null) {
try {
fos.close();
} catch (IOException ex) {
Logger.getLogger(Main.class.getName()).log(Level.SEVERE, null, ex);
}
}
if (oos != null) {
try {
oos.close();
} catch (IOException ex) {
Logger.getLogger(Main.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
}
static void readDataFromFile() {
FileInputStream fis = null;
ObjectInputStream ois = null;
try {
fis = new FileInputStream("student.dat");
ois = new ObjectInputStream(fis);
studentList = (List<Student>) ois.readObject();
} catch (FileNotFoundException ex) {
Logger.getLogger(Main.class.getName()).log(Level.SEVERE, null, ex);
} catch (IOException ex) {
Logger.getLogger(Main.class.getName()).log(Level.SEVERE, null, ex);
} catch (ClassNotFoundException ex) {
Logger.getLogger(Main.class.getName()).log(Level.SEVERE, null, ex);
} finally {
if (fis != null) {
try {
fis.close();
} catch (IOException ex) {
Logger.getLogger(Main.class.getName()).log(Level.SEVERE, null, ex);
}
}
if (ois != null) {
try {
ois.close();
} catch (IOException ex) {
Logger.getLogger(Main.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
}
static void showMenu() {
System.out.println("1. Add student");
System.out.println("2. Edit student by ID");
System.out.println("3. Delete student by ID");
System.out.println("4. Sort student list by GPA");
System.out.println("5. Sort student list by Name");
System.out.println("6. Show All Stundent");
System.out.println("7. Save all student into student.dat");
System.out.println("8. Read file student.dat and show all");
System.out.println("9. Exit");
System.out.println("Choose : ");
}
}
Đánh giá
Câu hỏi thường gặp
B2. Đăng ký học
B3. Hoàn thành mua khoá học
B4. Thanh toán theo hướng dẫn
B5. Đợi chúng tôi kiểm tra thông tin và thêm bạn vào lớp học
Bước 1: Truy cập website https://gokisoft.com/register
Bước 2: Điền thông tin theo yêu cầu. Để bản đăng ký được duyệt nhanh nhất, anh chị hãy điền đủ thông tin nhé.
Bước 3: Click vào "đăng ký ngay" để hoàn thành
Lưu ý:
Link video bài giảng mẫu: Video bài giảng mẫu là căn cứ để Gokisoft duyệt về hình thức và chất lượng giảng dạy. Vì vậy anh chị hãy điền link này để đăng ký được duyệt nhanh nhất nhé.
Anh chị cũng nên mô tả kỹ về kinh nghiệm giảng dạy để Gokisoft đánh giá nhé.
Chúc các anh chị và các bạn thành công, sớm gia nhập đội ngũ giảng viên Gokisoft!
Hình thức học như thế nào?
Việc tạo thói quen học tập sẽ giúp bạn tăng khả năng đạt được mục tiêu. Dành thời gian để học và nhận lời nhắc bằng cách sử dụng công cụ quản lý học tập của bạn.Bước 1: Truy cập mục tài khoản, đăng nhập và chọn Quản lý học tập và ấn Thêm lịch học
Bước 2: Cài đặt lịch học tập của bạn:
- Đặt tiêu đề và chọn khóa học muốn tạo lịch học sau đó ấn tiếp tục.
- Cài đặt tần suất học, thời gian học, thời gian bắt đầu học, lịch thông báo nhắc nhở trước lúc bắt đầu học, ngày kết thúc sau đó bạn ấn tiếp tục.
- Bạn kiểm tra lại lịch học tập lần nữa, nếu đúng bạn ấn Hoàn thành.
- Nếu muốn chỉnh sửa, bạn ấn mục Quay lại và chỉnh lại.
- Khi tạo xong bạn có thể ấn thanh ngang bên phải để xóa, sửa lịch học.
Việc lên lịch học sẽ giúp em bạn dễ dàng đạt được các mục tiêu mong muốn, tăng hiệu quả học tập. Đặc biệt, khi bạn học được 90% nội dung khóa học, bạn sẽ nhận chứng nhận hoàn thành khóa học.
Hình thức học như thế nào?
Hình thức học tại Gokisoft như thế nào?- Khóa học tại gokisoft là học online tại nhà thông qua điện thoại hoặc máy tính có kết nối internet.
- Các video bài giảng đã được biên tập sẵn, vì vậy học viên có thể học bất cứ lúc nào rảnh, không bị giới hạn thời gian và số lần học.
- Chỉ cần 1 lần đăng ký và thanh toán, học viên có thể học các video bài giảng đó trọn đời.
Có học được trên nhiều thiết bị không?
- Học viên có thể học tập ở nhiều thiết bị khác nhau và học ở bất cứ đâu khi có kết nối mạng internet. Tuy nhiên cùng một thời điểm chỉ một thiết bị có thể xem video bài học.
- Bạn sử dụng điện thoại, máy tính hoặc máy tính bảng truy cập website https://gokisoft.com để đăng nhập và vào học.
- Đối với điện thoại hoặc máy tính bảng, bạn có thể tải ứng dụng gokisoft về học. Tải ứng dụng tại: https://gokisoft.com/app
Có thể học trên Smart Tivi không?
- gokisoft đang nghiên cứu và phát triển để học viên có thể học trên mọi Smart Tivi . Hiện tại tùy thuộc vào tivi của bạn có tương thích với website gokisoft.vn không. Vì vậy tùy thuộc mỗi loại Smart Tivi, có Tivi sẽ mở và học được có tivi sẽ không mở được. Bạn có thể thử bằng cách vào trình duyệt website trên tivi, truy cập trang https://gokisoft.vn để đăng nhập và vào học. gokisoft hỗ trợ học tốt nhất trện điện thoại và máy tính.
Có thể sử dụng khóa học trong bao lâu?
- Đăng ký một lần học viên sẽ sở hữu khóa học trọn đời. Có thể xem đi xem lại nhiều lần, không giới hạn thời gian và số lần học.
Có thể tải khóa học về điện thoại, máy tính không?
- Các video bài giảng thuộc sở hữu của GokiSoft và giảng viên. Học viên không được tải xuống dưới mọi hình thức nhằm giảm thiểu nguy cơ khóa học bị phát tán trái phép, ảnh hưởng tới quyền lợi của chính học viên, giảng viên và gokisoft.
- Khóa học là tài sản sở hữu trí tuệ, công sức của giảng viên, mong học viên hiểu và tôn trọng quyền sở hữu của giảng viên.
- Bên dưới mỗi video có mục Thảo luận, bạn tích chọn và đặt câu hỏi tại mục thảo luận này. Thông thường trong vòng 24h giảng viên sẽ phản hồi lại bạn.
- Để xem câu trả lời của giảng viên, bạn vào mục thảo luận của bài học đã đặt câu hỏi, tích vào mục trả lời để xem.
Học viên có thể liên hệ trực tiếp với giảng viên qua điện thoại, email, Facebook không?
- Khóa học online, giảng viên có hàng nghìn học viên trên cả nước nên việc liên hệ trực tiếp với giảng viên qua điện thoại là không tiện và GokiSoft cũng có cam kết bảo mật thông tin cá nhân của giảng viên.
- Đa phần các khóa học giảng viên hỗ trợ học viên qua mục thảo luận. Một số khóa học giảng viên hỗ trợ học viên qua email, facebook, zalo, nhóm hỗ trợ trên Facebook, khi đó giảng viên và GokiSoft sẽ cung cấp thông tin liên hệ.
Bình luận
Tổng quan khóa học
- Bài học 88
- Thời gian Linh hoạt
- Mức độ Mới bắt đầu
- Ngôn ngữ Tiếng việt
- Thời lượng Trọn đời
- Chứng chỉ Không
Trần Văn Điệp
Giảng Viên
Đã theo học: Đại học Bách Khoa Hà Nội
Tech stack: C/C++, Pascal, Java (basic & advanced & Form), Android (Java + Kotlin), iOS (Objective C, Swift), PHP/Laravel, HTML/CSS/Javascript, .NET, MySQL, SQL Server, Oracle, J2EE, Dart/Flutter, Moodle, NodeJS, ReactJS, React Native, VueJS, Angular.
Kinh Nghiệm:
- Kỹ sư tại VNG (Tham gia phát triển dự án Bida Card, Bida 9 bi, Tiến Lên Miền Nam, Tiến Lên Miền Bắc, City Village, Cờ Tướng, Cờ Úp, Cờ Caro)
- Kỹ sư tại FPT Software (Tham gia phát triển dự án Sony Bravia 4K, Security Camera, Middle ware for Smart TV (InitialSetup, WifiDirect), PhotoShare on Bravia TV 2015, Fitness, Transportation (onsite in Malaysia), Automotive (Android), Nack5 (Android), iConcier (iOS), Karadanokimochi (Android), Karadanokimochi (iOS Web), Karadanokimochi baby (Android)
- Hiện tại là Giảng viên tại Aptech Việt Nam