CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jan 2009
    Posts
    1

    How to read from a .CSV extension file ?

    Hie..

    I am looking for a program/code where I can read the data from .csv file.
    The program takes input from a .csv file. The file contains weather data, viz. temperature, rainfall data, wind speed.

    Anyone who has such code or can write such code, pls help me out.

    Hoping for your kind co-operation.

    thanks.

  2. #2
    Join Date
    May 2006
    Location
    UK
    Posts
    4,473

    Re: How to read from a .CSV extension file ?

    A CSV file is just a text file where each piece of data is separated by a comma.
    You can easily parse the file using a java.util.Scanner class.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured