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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T15:10:40+00:00 2026-05-30T15:10:40+00:00

How can I make JavaScript and images on my remote HTML page be loaded

  • 0

How can I make JavaScript and images on my remote HTML page be loaded from assets folder (or just any local resource)?

  • 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-30T15:10:42+00:00Added an answer on May 30, 2026 at 3:10 pm

    Answer:

    1. You MUST load the HTML into string:

    private String readHtml(String remoteUrl) {
        String out = "";
        BufferedReader in = null;
        try {
            URL url = new URL(remoteUrl);
            in = new BufferedReader(new InputStreamReader(url.openStream()));
            String str;
            while ((str = in.readLine()) != null) {
                out += str;
            }
        } catch (MalformedURLException e) { 
        } catch (IOException e) { 
        } finally {
            if (in != null) {
                try {
                    in.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
        return out;
    }
    

    2. Load WebView with base URL:

    String html = readHtml("http://mydomain.com/my.html");
    mWebView.loadDataWithBaseURL("file:///android_asset/", html, "text/html", "utf-8", "");
    

    In this particular case you should have all .js files you want to use on the page to reside somewhere under “assets” folder of project. For example:

    /MyProject/assets/jquery.min.js
    

    3. In your remote html page you have to load .js and .css files that reside in your application like:

    <script src="file:///android_asset/jquery.min.js" type="text/javascript"></script>
    

    the same applies to all other local resources like images, etc. their path has to start with

    file:///android_asset/
    

    A WebView would first load the raw HTML you have provided as string, then pick .js, .css and other local resourses and then would load remote content.

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

Sidebar

Related Questions

Is there any way I can make Firefox call a JavaScript function in my
Given an instantiated JavaScript object/class can I make an Ajax call from that class
I have click-able images in my html page that call a javascript function... however
How can I make so if all the images on the page are broken/don't
How can you make the ASP.net Session Data available to a JavaScript method? I
How can I make a visitor's browser go fullscreen using JavaScript, in a way
Does it make sense to obsfucate Javascript? The only clear benefits I can see
I'm trying to make a drop down menu using javascript/jquery but can't get my
How is it possible to make prototype methods in C#.Net? In JavaScript, I can
I am trying to make a javascript banner. I have 3 images inside 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.