Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ještě je potřeba třída Student s atributy String name, String address, LocalDate bithDate a soubor students.csv s informacemi zapsanými takto: "jméno; adresa; datum;"
- import java.io.BufferedReader;
- import java.io.FileReader;
- import java.io.IOException;
- import java.time.LocalDate;
- import java.util.ArrayList;
- import java.util.List;
- import java.util.Scanner;
- public class Main {
- public static void main(String[] args) {
- // Seznam žáků
- List<Student> students = new ArrayList<>();
- // Načtení souboru CSV
- try (BufferedReader reader = new BufferedReader(new FileReader("students.csv"))) {
- // Přeskočení hlavičky souboru
- reader.readLine();
- // Načtení řádků souboru
- String line;
- while ((line = reader.readLine()) != null) {
- // Rozdělení řádku na jednotlivé sloupce
- String[] columns = line.split(";");
- // Získání jména, bydliště a datumu narození ze sloupců
- String name = columns[0].trim();
- String address = columns[1].trim();
- String birthDate = columns[2].trim();
- // Vytvoření nového žáka a přidání do seznamu
- Student student = new Student(name, address, LocalDate.of(2004, 10, 10));
- students.add(student);
- }
- } catch (IOException e) {
- e.printStackTrace();
- }
- // Získání filtra zadaného uživatelem
- Scanner scanner = new Scanner(System.in);
- System.out.println("Zadejte filtr pro vyhledávání žáků:");
- String filter = scanner.nextLine().trim();
- // Filtr
- List<Student> filteredStudents = new ArrayList<>();
- for (Student student : students) {
- if (student.getName().contains(filter) || student.getAddress().contains(filter)) {
- filteredStudents.add(student);
- }
- }
- // Výpis žáků, kteří odpovídají filtru
- for (Student student : filteredStudents) {
- System.out.println(student.getName() + ": " + student.getAddress());
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement