Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6344857
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T20:43:20+00:00 2026-05-24T20:43:20+00:00

Really newbie question: I have a .csv file that I need to read. I’ve

  • 0

Really newbie question:

I have a .csv file that I need to read. I’ve put it in the raw folder. For convenience, Im’ using the http://opencsv.sourceforge.net/ library for reading the file. The library provides this method for creating a CSVReader object:

CSVReader reader = new CSVReader(new FileReader("yourfile.csv"));

But I don0’t get how to point this constructor to my file, since the file in Android is usually referenced like R.raw.file rather than a String address to the file.

Any help would be greatly appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T20:43:20+00:00Added an answer on May 24, 2026 at 8:43 pm

    You want to do something like this –

    public void readCSVFromRawResource(Context context)
    {
        //this requires there to be a dictionary.csv file in the raw directory
        //in this case you can swap in whatever you want
        InputStream inputStream = getResources().openRawResource(R.raw.dictionary);
        BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream));
    
        try
        {
           String word;//word
           int primaryKey = 0;//primary key
           Map dictionaryHash = new HashMap();
    
           while ((word = reader.readLine()) != null)
           {
               if(word.length() < 7)
               {
                   dictionaryHash.put(primaryKey,word );
                   primaryKey++;
    
    
    
                   if(primaryKey % 1000 == 0)
                       Log.v("Percent load completed ", " " + primaryKey);
               }
           }
    
            //write the dictionary to a file
            File file = new File(DICTIONARY_FILE_NAME);
            BufferedOutputStream fos = new BufferedOutputStream(new FileOutputStream(DICTIONARY_FILE_NAME));
            ObjectOutputStream oos = new ObjectOutputStream(fos);
            oos.writeObject(dictionaryHash);
            oos.flush();
            oos.close();
                     Log.v("alldone","done");
    
       }
       catch (Exception ex) {
           // handle exception
           Log.v(ex.getMessage(), "message");
       }
       finally
        {
           try
           {
               inputStream.close();
    
           }
           catch (IOException e) {
               // handle exception
              Log.v(e.getMessage(), "message");
           }
       }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

A really newbie question: under glassfish->domains->domain1->config folder, there's a file named keyfile, what is
Is is that I'm a newbie learning Ruby, or does it really have more
A newbie question (I haven't really created new projects in Eclipse yet): I have
this is really a newbie question, but it would help me to have a
This is probably a really newbie question (well, I'm pretty sure it is), but
This is probably a really stupid newbie-sounding question to you developer type people, but
I'm really new to VSTO so sorry if this is a newbie question. I'm
Newbie question : I have 2 C# projects in TeamCity, call them A and
Just a newbie question really. Can you edit a website (in Visual Studio) on
It may looks like a newbie question, but I really am. I try to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.