Reading a CSV file

Hi folks,

I'm currently writing a system that needs to import a CSV file at start up. I've managed to load the file and parse it using the split() method in the String class, but all I'm getting is a list of memory addresses. I'm using the standard toString() to display the text.

Is there a way of formatting the text as it should be, I'd paste the code, but I'm not sitting at my computer at the moment.

Many thanks

Emyr

[459 byte] By [Emyra] at [2007-11-15]
# 1

post the code and some sample input if possible

SoulTech2012a at 2007-7-29 > top of java,Core,Core APIs...
# 2

> but all I'm getting is a list of memory addresses

Wow! I was not aware such a thing was possible in Java!

BIJ001a at 2007-7-29 > top of java,Core,Core APIs...
# 3

> > but all I'm getting is a list of memory addresses

>

> Wow! I was not aware such a thing was possible in

> Java!

What he's getting is hashCodes based on calling toString on something that doesn't override Object toString

cotton.ma at 2007-7-29 > top of java,Core,Core APIs...