There are file explorer style apps that will open it. Or you could download Csv Viewer app from Play Store.

Blurb from it.

CSV File Viewer For Android | CSV Reader - view small and large-sized CSV files.

CSV Reader - Simple, fast, and powerful tool for reading csv files.

I am not associated with it.

Answer from Rohit Gupta on Stack Exchange
Top answer
1 of 7
49

Try OpenCSV - it will make your life easier.

First, add this package to your gradle dependencies as follows

implementation 'com.opencsv:opencsv:4.6'

Then you can either do

import com.opencsv.CSVReader;
import java.io.IOException;
import java.io.FileReader;


...

try {
    CSVReader reader = new CSVReader(new FileReader("yourfile.csv"));
    String[] nextLine;
    while ((nextLine = reader.readNext()) != null) {
        // nextLine[] is an array of values from the line
        System.out.println(nextLine[0] + nextLine[1] + "etc...");
    }
} catch (IOException e) {

}

or

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

Edit after comment

try {
    File csvfile = new File(Environment.getExternalStorageDirectory() + "/csvfile.csv");
    CSVReader reader = new CSVReader(new FileReader(csvfile.getAbsolutePath()));
    String[] nextLine;
    while ((nextLine = reader.readNext()) != null) {
        // nextLine[] is an array of values from the line
        System.out.println(nextLine[0] + nextLine[1] + "etc...");
    }
} catch (Exception e) {
    e.printStackTrace();
    Toast.makeText(this, "The specified file was not found", Toast.LENGTH_SHORT).show();
}

If you want to package the .csv file with the application and have it install on the internal storage when the app installs, create an assets folder in your project src/main folder (e.g., c:\myapp\app\src\main\assets\), and put the .csv file in there, then reference it like this in your activity:

String csvfileString = this.getApplicationInfo().dataDir + File.separatorChar + "csvfile.csv"
File csvfile = new File(csvfileString);
2 of 7
11

The following snippet reads a CSV file from the raw resources folder (which will be packed into your .apk file upon compilation).

Android by default does not create the raw folder. Create a raw folder under res/raw in your project and copy your CSV File into it. Keep the name of the CSV file lower case and convert it into text format when asked. My CSV file name is welldata.csv.

In the snippet, WellData is the model class (with constructor, getter and setter) and wellDataList is the ArrayList to store the data.

private void readData() {
    InputStream is = getResources().openRawResource(R.raw.welldata);
    BufferedReader reader = new BufferedReader(
            new InputStreamReader(is, Charset.forName("UTF-8")));
    String line = "";

    try {
        while ((line = reader.readLine()) != null) {
           // Split the line into different tokens (using the comma as a separator).
            String[] tokens = line.split(",");

            // Read the data and store it in the WellData POJO.
            WellData wellData = new WellData();
            wellData.setOwner(tokens[0]);
            wellData.setApi(tokens[1]);
            wellData.setLongitude(tokens[2]);
            wellData.setLatitude(tokens[3]);
            wellData.setProperty(tokens[4]);
            wellData.setWellName(tokens[5]);
            wellDataList.add(wellData);

            Log.d("MainActivity" ,"Just Created " + wellData);
        }
    } catch (IOException e1) {
        Log.e("MainActivity", "Error" + line, e1);
        e1.printStackTrace();
    }
}
Discussions

Import csv data on android (or the web)
u/derFalscheMichel - Your post was submitted successfully. Once your problem is solved, reply to the answer(s) saying Solution Verified to close the thread. Follow the submission rules -- particularly 1 and 2. To fix the body, click edit. To fix your title, delete and re-post. Include your Excel version and all other relevant information Failing to follow these steps may result in your post being removed without warning. I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns. More on reddit.com
🌐 r/excel
4
2
July 4, 2024
How to read csv file in android? - Stack Overflow
Possible Duplicate: Get and Parse CSV file in android I would like to store a csv file in android app itself & it should be called for read & later print the values according to the More on stackoverflow.com
🌐 stackoverflow.com
how to use .csv file in android? - Stack Overflow
I'm doing a sample Quiz application in Android. I used array to store the Questions and Answers, now I wish to store the questions and answers in a .csv file. it is possible to parse .csv file in A... More on stackoverflow.com
🌐 stackoverflow.com
Import .csv android.
u/WorriedTumbleweed289 You only need to have access to the full desktop version one time in order to "approve" the data import. When you open the sheet in the full version there should be a pop-up asking for approval. If you don't have access to a computer; you can open it in chrome on your phone and go to the settings menu and "get desktop version" or whatever Chrome calls it. It can be a little janky but should still give you the full computer version of your sheet including the ability to approve imports. More on reddit.com
🌐 r/googlesheets
5
1
June 29, 2025
🌐
Google Play
play.google.com › store › apps › details
CSV File Viewer - Apps on Google Play
May 15, 2026 - CSV File Viewer For Android | CSV Reader - view small and large-sized CSV files.
Rating: 3.7 ​ - ​ 9.56K votes
🌐
Javapapers
javapapers.com › android › android-read-csv-file
Android Read CSV File - Javapapers
InputStream inputStream = getResources().openRawResource(R.raw.stats); CSVFile csvFile = new CSVFile(inputStream); List ... Now lets look at this example Android application where we have used a CSV file to load data. We have used the Android custom list view layout to load and display the data from CSV file.
🌐
Softonic
csv-file-viewer.en.softonic.com › home › android › productivity › csv file viewer
CSV File Viewer for Android - Download
May 29, 2026 - CSV File Viewer is an application for viewing CSV files on Android.
Rating: 9.8/10 ​ - ​ 1 votes
🌐
GitHub
github.com › teabow › android-csv-reader
GitHub - teabow/android-csv-reader: A simple Android csv reader implementation with annotations
An Android csv reader implementation with annotations
Starred by 17 users
Forked by 7 users
Languages   Java 100.0% | Java 100.0%
🌐
CSVBox Blog
blog.csvbox.io › home › read & import csv files in an android app (kotlin)
Read & Import CSV Files in an Android App (Kotlin) - CSVBox Blog
September 16, 2025 - Learn how to read and import CSV files in an Android app with Kotlin code examples and best practices.
Find elsewhere
🌐
Reddit
reddit.com › r/excel › import csv data on android (or the web)
r/excel on Reddit: Import csv data on android (or the web)
July 4, 2024 -

For context: I'd like to compare election results over multiple elections from the past few years in my district.

The data I got access to is quite a broad arrangement of text files with pages of data separated by varying amounts of semicolons. I tried to simply convert to .csv, but that way excel just sorts them into like a thousand columns, but doesn't add a single row.

I tried the webversion, but next to the fact that its very glitchy, the whole split into columns isn't particularly useful if I don't want to spend hours dragging data vertically.

What I like to do is arrange the data quite simply by minor district, amount of voters, amount of votes for party A and so on, and ultimately compare it with other elections in a single sheet.

Do you have any idea how I could import the data in a way that will save me all that? In theory, it seems pretty simple, but right now it seems impossible to me, despite having all the data delivered on a silver plate

🌐
dotTech
dottech.org › home › android › how to open and read csv files in android [tip]
How to open and read CSV files in Android [Tip] | dotTechdotTech
March 6, 2015 - Open the Play Store app from your Android device. Search for the “CSV Viewer” app and then install it on your tablet or phone.
🌐
Aknay
aknay.github.io › 2018 › 09 › 28 › how-to-open-a-csv-file-from-android.html
How to open a CSV file from Android App
Once the string data is extracted from the CSV file, we use joinToString function to display on text view mTextViewCsvResult. You can assign any number to READ_REQUEST_CODE. Doesn’t has to be 123 in this example. But when you have multiple intents (eg. open image files, open PDF files) then you need to assign a unique number to each intent and act on it based on that number. We don’t have much to explain here. Just take note of the android:id for MainActivity.
🌐
F-Droid
f-droid.org › packages › com.torrents_csv_android
Torrents-csv-android | F-Droid - Free and Open Source Android App Repository
Torrents-csv-android is a search engine for the torrents-csv.com search engine. Torrents.csv is a collaborative repository of torrents and their files, consisting of a searchable torrents.csv file.
🌐
Google Play
play.google.com › store › apps › details
CSV file Create Edit & Viewer - Apps on Google Play
This is the 100% csv viewer for Android free app.
Rating: 3.1 ​ - ​ 185 votes
🌐
Uptodown
csv-file-viewer-file-reader-app.en.uptodown.com › android › productivity › personal › csv viewer
CSV Viewer for Android - Download the APK from Uptodown
3 weeks ago - Are you searching for an efficient tool to handle CSV files on your smartphone? CSV Viewer is a versatile app designed to help you view, edit, and convert CSV files into PDF format directly on your Android device.
🌐
Gadgets To Use
gadgetstouse.com › home › 3 ways to open and edit csv files on android phone
3 Ways to Open and Edit CSV Files on Android Phone - Gadgets To Use
October 4, 2022 - CSV Viewer App is a complete Android app to deal with all the CSV files. Using this app, you can even write and read data codes of table designing. It also offers rich features such as data analysis and charts to run calculations.
🌐
Aptoide
csv-file-viewer.en.aptoide.com › homepage › android apps › productivity › csv file viewer
CSV File Viewer - APK Download for Android | Aptoide
May 16, 2026 - CSV File Viewer is an application designed for users who need to access and manage CSV files efficiently. This app, which is available for the Android platform, simplifies the process of viewing and interacting with comma-separated values files, making it an essential tool for data analysts, business professionals, and anyone who frequently works with tabular data.
🌐
Allbestapps
csv-file-reader.allbestapps.net
Best Csv file reader apps for Android - AllBestApps
Welcome to the best Android CSV File Reader apps list. CSV stands for comma-separated values and is widely used in data storage and data interchange. This list provides you with the best Android apps to open and read CSV files so that you can manage your data with ease.
🌐
Uptodown
csv-viewer.en.uptodown.com › android › productivity › finance › csv viewer
CSV Viewer for Android - Download the APK from Uptodown
July 23, 2016 - Download the APK of CSV Viewer for Android for free. A viewer for CSV files. CSV Viewer is a versatile application designed for users who need to open and...