I have little experience using delimiters and i need to read a text file that stores several objects whose data is stored in single lines separate by commas (\",\"). The sep
One issue is:
while(read.hasNext())
{
title = read.nextLine();
category = read.nextLine();
runningTime = read.nextLine();
hasNext()
Returns true if this scanner has another token in its input. Not entire line. You need to use hasNextLine()
You are doing nextLine() three times. I think what you need to do is, read the line and the split the line.