https://github.com/julianamancera/lab-sw-5-hashmap-exercise
https://github.com/julianamancera/lab-sw-5-hashmap-exercise
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/julianamancera/lab-sw-5-hashmap-exercise
- Owner: JulianaMancera
- Created: 2024-04-01T02:38:54.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-02T13:27:08.000Z (about 1 year ago)
- Last Synced: 2024-08-12T04:25:40.589Z (9 months ago)
- Language: Java
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lab-SW-5-HashMap-Exercise
## Create a report that will display the isbn, book title, author's name and bio based from the given diagram:

**Use HASHMAP.** Use isbn as your key. Use FileReader in accessing the files.
### Access the following files:
**Book.csv**
_Isbn, title, author name_
BK-1234,The Lord of the Rings,J.R.R. Tolkien
BK-5678,The Hobbit,J.R.R. Tolkien
BK-9012,Pride and Prejudice,Jane Austen
BK-2345,Sense and Sensibility,Jane Austen
BK-7890,To Kill a Mockingbird,Harper Lee
BK-3456,One Hundred Years of Solitude,Gabriel Garcia Marquez
BK-0987,Love in the Time of Cholera,Gabriel Garcia Marquez
**Author.csv**
_name,bio_
J.R.R. Tolkien,English philologist and university professor
Jane Austen,English novelist known for her wit
Harper Lee,American novelist best known for her Pulitzer Prize-winning novel.
Douglas Adams,English science fiction writer and documentary filmmaker.
F. Scott Fitzgerald,American novelist and short-story writer.
Gabriel Garcia Marquez,Colombian novelist known for his magical realism works._Use the following sequence diagram in the implementation of the codes:_

**Sample output:**
BK-1234 The Lord of the Rings
J.R.R. Tolkien - English philologist and university professorBK-9012 Pride and Prejudice
Jane Austen - English novelist known for her wit