Тёмный

Reading and parsing delimited CSV data from a file into an Object in Java 

Brandan Jones
Подписаться 30 тыс.
Просмотров 52 тыс.
50% 1

Опубликовано:

 

22 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 43   
@Gamuss12345
@Gamuss12345 9 месяцев назад
OMG your way of teaching is soooooo much better than all of the RU-vidrs I've seen before! Incredible! Very very beginner-friendly! Thank you! :)
@discospiff
@discospiff 9 месяцев назад
Thanks, I really appreciated your endorsement! IT skills will serve you well. Keep me updated on your journey!
@58gullu58
@58gullu58 4 года назад
What if you have multiple lines and want to create an object for each line and add them in an Array?
@bananaapple2253
@bananaapple2253 Год назад
Since today is 30/9/2023 but the video is so usefull for me just becuase it actually help me to figure out how to done my assignment. Thank you so much for the effort
@discospiff
@discospiff Год назад
That's funny! This is an ooooooooold video. :)
@AhmedHadiPADI_scuba_instructor
very very professional explanation! going slowly and clear voice. love it.
@discospiff
@discospiff 8 лет назад
Excellent! Thanks for the feedback.
@AhmedHadiPADI_scuba_instructor
you welcome! what would you do if you had multiple lines of numbers? thanks!
@michaelhutchinson213
@michaelhutchinson213 7 лет назад
My first time commenting on a video, but really wanted to say thank-you, very well explained, great help
@discospiff
@discospiff 7 лет назад
Excellent, thanks for the feedback! I'm glad I made your first time comment. :)
@caseycruz7959
@caseycruz7959 2 года назад
Great Video! Would you be able to do this with one of the aariables as String[ ] rather then just a string?
@asharshahab1982
@asharshahab1982 Год назад
What happens when i encounter a blank row while reading the excel.csv file? How do i skip that line whiout any run time error sir?
@discospiff
@discospiff Год назад
I'd check for the length of the row first, and decide whether or not to skip. Or... use a try-catch block to catch an error from an empty row, and then decide how to process it.
@williaminfiesto2529
@williaminfiesto2529 3 года назад
This was very helpful and easy to understand. Thank you!
@discospiff
@discospiff 3 года назад
Thanks for the feedback! I strive to make my videos easy for a wide audience to understand, so I appreciate hearing when I've met my goal.
@frankkid010
@frankkid010 5 лет назад
What if the file had multiple vehicles, let's say 5, is there a way to do this without manually creating 5 variables for the vehicles?
@discospiff
@discospiff 5 лет назад
Use an array... ArrayList I believe I covered that in a later video.
@frankkid010
@frankkid010 5 лет назад
@@discospiff thank you
@HazzM
@HazzM 4 года назад
Any link or title to find this? I've looked but nothing jumped out at me
@mabblers
@mabblers 6 лет назад
Very good video. Do you have one like with more rows from the file?
@discospiff
@discospiff 6 лет назад
Hmmmm. I would just put the Scanner's read method in a loop, and iterate over the file until complete.
@XSource100
@XSource100 2 года назад
how do you read objects from csv and insert them into object class
@ΣΠΥΡΙΔΩΝΓΟΥΛΑΣ
@ΣΠΥΡΙΔΩΝΓΟΥΛΑΣ 10 месяцев назад
it works with .tsv files?
@safarnama04
@safarnama04 6 лет назад
my program is not returning correct output for next lines, it is working for first line only
@gabriel9668
@gabriel9668 6 лет назад
Thank you very much! I am working on this assignment for my class and this video helped a lot! :)
@SB-ou5yp
@SB-ou5yp 6 лет назад
Hi Brandon, your tutorial was very useful but I've been having issues with a CSV file, particularly when printing out the cells in the last column of each row within my CSV file. It's like the last cell in the previous row is attached to the first cell in the next row of the file. The cell contents print in the correct position but they print simultaneously as if they are joined together. For instance, let's say I have a CSV file with the contents: 7,7,7,7 3,3,3,3 When printing each number, the first three sevens in the first row print individually but the last seven prints with the first three in the next row, like so: 1st pass 7, 2nd pass 7,7, 3rd pass 7,7,7, 4th pass 7,7,7,7 3, My program aims to store each element individually and cannot do so until I figure out how to separate the last and first lines. Do you have any idea on how to solve this?
@jonathanharris2326
@jonathanharris2326 3 года назад
This was incredibly helpful for my first project in java. I'm used to C++ but i'm starting to really like java, so easy!
@discospiff
@discospiff 3 года назад
Glad to hear that! This is an older video in my library; I'm happy to hear it's still useful. :)
@marcusdouglas332
@marcusdouglas332 8 лет назад
Lets say that one cars you made had more than one mpg value, how could you represent that on the same line?
@discospiff
@discospiff 8 лет назад
If it's a one to many relationship, I would split the "many" side into a separate file that is foreign-keyed back to the main cars file, using a unique identifier. Alternatively, you could do it all in one file if you have an additional field before the mpgs: a field that tells you how many MPGs follow. That way, you know how many mpgs to expect, and you read and parse each of them, then continue with the next field.
@marcusdouglas332
@marcusdouglas332 8 лет назад
So there isn't a way to have a flexible field that could hold more than one value? Say we input the amount of cash transactions a business has in one day.
@lauragriffiths3332
@lauragriffiths3332 3 года назад
all i can say is THANK YOU !!!
@discospiff
@discospiff 3 года назад
You're welcome! I'm glad it helped.
@copieselect9846
@copieselect9846 4 года назад
I used the same technique for student detail but do not know how to make that in loop and form a array of student objects
@discospiff
@discospiff 4 года назад
How can I help?
@lennysmileyface
@lennysmileyface 6 лет назад
I do this instead. Have your file in myproject/eg/ new FileReader("eg/" + fileName + ".fileextension")
@fannymoryta
@fannymoryta 8 лет назад
Great tutorial.!
@discospiff
@discospiff 8 лет назад
:) Thanks.
@cithpo5938
@cithpo5938 8 лет назад
Dear Mr. Brandon, can I get your codes for study?
@discospiff
@discospiff 8 лет назад
Sure, it's freely available on GitHub here: github.com/discospiff/US16Vehicles
@cithpo5938
@cithpo5938 8 лет назад
Thank you so much
@NazmulIslam-zc9te
@NazmulIslam-zc9te 7 лет назад
nice
@budpatterson8357
@budpatterson8357 8 лет назад
First
Далее
Java: Read a CSV File into an Array #49
13:47
Просмотров 202 тыс.
Refactor Introduce Method in NetBeans; Debug, JavaDoc
11:55
Наши дети захватили кухню!
00:59
Просмотров 307 тыс.
aespa 에스파 'Whiplash' MV
03:11
Просмотров 17 млн
How to Read Java Objects From a File Tutorial
25:56
Просмотров 9 тыс.
Parsing Java Bytecode with Python (JelloVM Ep.01)
2:25:53
The Only Unbreakable Law
53:25
Просмотров 333 тыс.
Java read CSV File 📰
9:12
Просмотров 95 тыс.
Beginner's Guide to the Bash Terminal
1:14:37
Просмотров 2,3 млн
Edit a Record in a CSV/txt File Java
15:47
Просмотров 59 тыс.