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 7708241
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T00:33:44+00:00 2026-06-01T00:33:44+00:00

I am using an AsyncTask to read data from a file. I get the

  • 0

I am using an AsyncTask to read data from a file. I get the aforementioned error when I run the application.

The error messages are:

03-29 20:06:08.445: E/AndroidRuntime(13191):
java.lang.ExceptionInInitializerError 03-29 20:06:08.445:
E/AndroidRuntime(13191):
at
com.google.app.BouncingBall.HighScore.loadFromFile(HighScore.java:81)
03-29 20:06:08.445: E/AndroidRuntime(13191):
at
com.google.app.BouncingBall.HighScore.(HighScore.java:24) 03-29
20:06:08.445: E/AndroidRuntime(13191): at
com.google.app.BouncingBall.BouncingBallActivity$BouncingBallView.init(BouncingBallActivity.java:185)
03-29 20:06:08.445: E/AndroidRuntime(13191): at
com.google.app.BouncingBall.BouncingBallActivity$BouncingBallView.run(BouncingBallActivity.java:173)
03-29 20:06:08.445: E/AndroidRuntime(13191): at
java.lang.Thread.run(Thread.java:1019) 03-29 20:06:08.445:
E/AndroidRuntime(13191): Caused by: java.lang.RuntimeException: Can’t
create handler inside thread that has not called Looper.prepare()
03-29 20:06:08.445: E/AndroidRuntime(13191): at
android.os.Handler.(Handler.java:121)

The Code

private void loadFromFile()
    {
        new AsyncDataStorage().execute(FILENAME);
    }


class AsyncDataStorage extends AsyncTask<String, Integer, Boolean> {

        protected Boolean doInBackground(String... args) {
            try {
                FileInputStream fis = context.openFileInput(FILENAME);
                byte[]  raw = new byte[fis.available()];
                String rawData=null;
                while(fis.read()!=-1)
                {
                    rawData = new String(raw);
                }
                return (processRawData(rawData));
            } catch (FileNotFoundException e) {
                e.printStackTrace();
                return false;
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
                return false;
            }

        }
  • 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-06-01T00:33:46+00:00Added an answer on June 1, 2026 at 12:33 am

    Simply wrap every call to com.google.app.BouncingBall.HighScore.loadFromFile or the creation of AsyncTask within it in a Runnable, and post it to a Handler bound to the UI thread.

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

Sidebar

Related Questions

I am using AsyncTask to get data from a server and want to show
i am downloading data from website using asynctask and my code for async task
I'm attempting to use an AsyncTask to read from a file at regular intervals.
I am making and application to send data using sockets from an android device
I'm using a background thread to read from a Sqlite database some GPS data...and
i'm using AsyncTask to retrive data from RSS ,,i'm showing a progress Dialog in
I have an Android application which retrieves information from the web using an AsyncTask
I'm making an application that get data from webservice , insert it into a
Currently, I'm using AsyncTask to handle Http connection and retrieve data as JSON format.
I'm using AsyncTask s to fetch data in response to the user pressing 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.