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

  • SEARCH
  • Home
  • 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 7632389
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T06:36:49+00:00 2026-05-31T06:36:49+00:00

So this is a pretty embarrassing question, but i have a text file and

  • 0

So this is a pretty embarrassing question, but i have a text file and java will read all of the words in it and add it to a array, i don’t know where to put the text file, like what folder so the comp can go get it? could someone tell me. my code works in a regular java application, so it should work on android.

  • 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-31T06:36:51+00:00Added an answer on May 31, 2026 at 6:36 am

    you can use

    <your-context>.getAssets();
    

    to return an AssetsManager object.

    AssetsManager assets = context.getAssets();
    

    You can then open an input stream with the open() method.

    InputStream inputStream = assets.open("filename");
    

    The InputStream object is a standard Java object from the IO package. You can decorate this stream with an object decorator you wish (Reader, BufferedReader, etc).

    If you wish to move this file out of the APK (that is not inflated) to the phone you can just copy the bytes of the file from the input stream using an output stream. Note you will have to have permissions in your write directory (you can do this if your phone is rooted and you have created a shell interface to run native shell commands through JNI).

    UPDATE

    try {
        InputStream inputStream = this.getAssets().open("test.txt");
        BufferedReader buffer = new BufferedReader(new Reader(inputStream));
    
        String line;
        while((line = buffer.readLine()) != null) {
            tots.add(line);
        }
    }
    catch(IOException e) {
        e.printStackTrace();
    }
    

    Haven’t tested it, but I think this is what you want.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is pretty much a duplicate question but instead of using Castle Dynamic Proxy
I've googled this question repeatedly, but have not found a great answer anywhere. I'm
I'm starting with WPF and I have this pretty easy question: I have a
So I have this pretty large XML file (40MB) that I'll have to repeatedly
I have written something like this pretty easily in C# ( string GetUrl(new {
Seems I've outdone myself. All the while I was creating this pretty little 'latest
This is pretty interesting, this site runs a speed test and compares all of
This is pretty much the same problem i have, except with very different code:
I have the following problem. I have this pretty class and now I want
Ok I know jquery can do this pretty simply, but digging around I'm a

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.