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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T08:34:34+00:00 2026-05-20T08:34:34+00:00

I am writing a program that gets a HTML file in Android and I

  • 0

I am writing a program that gets a HTML file in Android and I keep getting a force close when I run it! I don’t know what is wrong! Here are some blocks of code:

Converts file to string:

  public String getFileAsString(File file){ FileInputStream fis = null;
        BufferedInputStream bis = null;
        DataInputStream dis = null;
        StringBuffer sb = new StringBuffer();
        try {
        fis = new FileInputStream(file);
        bis = new BufferedInputStream(fis);
        dis = new DataInputStream(bis);

        while (dis.available() != 0) {
        sb.append( dis.readLine() +"\n");
        }
        fis.close();
        bis.close();
        dis.close();

        } catch (FileNotFoundException e) {
        e.printStackTrace();
        } catch (IOException e) {
        e.printStackTrace();
        }
        return sb.toString();
        }

Then where the problem might be:

    File htmlfile = null;
                EditText text = (EditText)findViewById(R.id.editText1);
                TextView tv =(TextView)findViewById(R.id.textView2);
                String data;
            URL url = null;
            try {
                url = new URL(text.getText().toString());
            } catch (MalformedURLException e) {
                // TODO Auto-generated catch block
                tv.setText("Invalid URL");
            }
            try {
                download(url,htmlfile);
            } catch (IOException e) {
                // TODO Auto-generated catch block
                tv.setText("Something went wrong try reinstalling the program!");
            }

            data = getFileAsString(htmlfile);
            tv.setText(data);

Other code:

private static void download(URL input, File output)
    throws IOException {
  InputStream in = input.openStream();
  try {
    OutputStream out = new FileOutputStream(output);
    try {
      copy(in, out);
    } finally {
      out.close();
    }
  } finally {
    in.close();
  }
}

private static void copy(InputStream in, OutputStream out)
    throws IOException {
  byte[] buffer = new byte[1024];
  while (true) {
    int readCount = in.read(buffer);
    if (readCount == -1) {
      break;
    }
    out.write(buffer, 0, readCount);
  }
}


}

Logcat:

02-26 18:47:43.571: ERROR/AndroidRuntime(275): FATAL EXCEPTION: main
02-26 18:47:43.571: ERROR/AndroidRuntime(275): java.lang.NullPointerException: Argument must not be null
02-26 18:47:43.571: ERROR/AndroidRuntime(275):     at java.io.FileInputStream.<init>(FileInputStream.java:78)
02-26 18:47:43.571: ERROR/AndroidRuntime(275):     at com.apps.blogspot.blogspot.getFileAsString(blogspot.java:40)
02-26 18:47:43.571: ERROR/AndroidRuntime(275):     at com.apps.blogspot.blogspot.onClick(blogspot.java:83)
02-26 18:47:43.571: ERROR/AndroidRuntime(275):     at android.view.View.performClick(View.java:2408)
02-26 18:47:43.571: ERROR/AndroidRuntime(275):     at android.view.View$PerformClick.run(View.java:8816)
02-26 18:47:43.571: ERROR/AndroidRuntime(275):     at android.os.Handler.handleCallback(Handler.java:587)
02-26 18:47:43.571: ERROR/AndroidRuntime(275):     at android.os.Handler.dispatchMessage(Handler.java:92)
02-26 18:47:43.571: ERROR/AndroidRuntime(275):     at android.os.Looper.loop(Looper.java:123)
02-26 18:47:43.571: ERROR/AndroidRuntime(275):     at android.app.ActivityThread.main(ActivityThread.java:4627)
02-26 18:47:43.571: ERROR/AndroidRuntime(275):     at java.lang.reflect.Method.invokeNative(Native Method)
02-26 18:47:43.571: ERROR/AndroidRuntime(275):     at java.lang.reflect.Method.invoke(Method.java:521)
02-26 18:47:43.571: ERROR/AndroidRuntime(275):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
02-26 18:47:43.571: ERROR/AndroidRuntime(275):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
02-26 18:47:43.571: ERROR/AndroidRuntime(275):     at dalvik.system.NativeStart.main(Native Method)
02-26 18:47:43.661: WARN/ActivityManager(38):   Force finishing activity com.apps.blogspot/.blogspot
02-26 18:47:44.261: WARN/ActivityManager(38): Activity pause timeout for HistoryRecord{43e2ec30 com.apps.blogspot/.blogspot}
02-26 18:47:44.901: INFO/ARMAssembler(38): generated scanline__00000077:03515104_00000000_00000000 [ 33 ipp] (47 ins) at [0x360050:0x36010c] in 6934332 ns
02-26 18:47:44.941: INFO/ARMAssembler(38): generated scanline__00000177:03515104_00001001_00000000 [ 91 ipp] (114 ins) at [0x360110:0x3602d8] in 2187014 ns
02-26 18:47:48.831: INFO/Process(275): Sending signal. PID: 275 SIG: 9
02-26 18:47:48.871: INFO/ActivityManager(38): Process com.apps.blogspot (pid 275) has died.
02-26 18:47:48.871: INFO/WindowManager(38): WIN DEATH: Window{43fd01f8 com.apps.blogspot/com.apps.blogspot.blogspot paused=false}
02-26 18:47:48.911: WARN/InputManagerService(38): Got RemoteException sending setActive(false) notification to pid 275 uid 10036
02-26 18:47:55.766: WARN/ActivityManager(38): Activity destroy timeout for HistoryRecord{43e2ec30 com.apps.blogspot/.blogspot}
  • 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-20T08:34:34+00:00Added an answer on May 20, 2026 at 8:34 am

    htmlfile is null: you never assign a value to it.

    Here’s how you figure it out from the stacktrace:

    02-26 18:47:43.571: ERROR/AndroidRuntime(275): java.lang.NullPointerException: Argument must not be null
    02-26 18:47:43.571: ERROR/AndroidRuntime(275):     at java.io.FileInputStream.<init>(FileInputStream.java:78)
    02-26 18:47:43.571: ERROR/AndroidRuntime(275):     at com.apps.blogspot.blogspot.getFileAsString(blogspot.java:40)
    

    From the top of the trace, you see you’ve got a NullPointerException constructing a FileInputStream in your getFileAsString method.

    It must be that the parameter file is null, so looking for the caller you see:

    data = getFileAsString(htmlfile);
    

    And looking for a place where something is assigned to htmlfile, you only find:

    File htmlfile = null;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm currently writing a program that needs to compare each file in an ArrayList
I know tree is a well studied structure. I'm writing a program that randomly
I'm writing a python3 program, that gets the names of files to process from
I'm writing a program that sends an email out at a client's specific local
If you are writing a program that is executable from the command line, you
I'm writing a program that uses SetWindowRgn to make transparent holes in a window
I'm writing a program that contains a generational garbage collector. There are just two
I am writing a program that will draw a solid along the curve of
I am writing a program that does a lot of writes to a Postgres
I'm writing a program that allows developers to write AddIn's for it and I'd

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.