Failed to load resource when loading image












1















I am making a project for image loading but whenever I try to load an image into circle image view through glide but whenever I run the app, the image view goes blank and error comes up from glide.



dp = view.findViewById(R.id.circleView);

GlideApp
.with(getActivity())
.load(serverResponse.getMessage().getPic())//C:/Apache24/htdocs/app2/User Files/User Id-102/User id 102.jpg
.listener(new RequestListener<Drawable>() {
@Override
public boolean onLoadFailed(@Nullable GlideException e, Object model, Target<Drawable> target, boolean isFirstResource) {
// log exception
Toast.makeText(getActivity(), "Error loading image", Toast.LENGTH_SHORT).show();
Log.v("glide", "Error loading image", e);
return false; // important to return false so the error placeholder can be placed
}

@Override
public boolean onResourceReady(Drawable resource, Object model, Target<Drawable> target, DataSource dataSource, boolean isFirstResource) {
return false;
}
})
.into(dp);


Log




2018-11-02 19:20:08.709 31664-31664/com.example.user.myapplication W/Glide: Load failed for C:/Apache24/htdocs/app2/User Files/User Id-102/User id 102.jpg with size [200x200]

class com.bumptech.glide.load.engine.GlideException: Failed to load resource
2018-11-02 19:20:08.718 31664-31664/com.example.user.myapplication V/glide: Error loading image

class com.bumptech.glide.load.engine.GlideException: Failed to load resource




I cannot figure out actually from where the error is occurring.










share|improve this question

























  • Can you give the url for the image.

    – Chirag Sharma
    Nov 16 '18 at 12:30











  • C:/Apache24/htdocs/app2/User Files/User Id-102/User id 102.jpg

    – Rahmat Ullah
    Nov 16 '18 at 13:18











  • are you trying to use Glide against some java projects? your image reference is not valid one, it seems to be a desktop resource path.

    – vikas kumar
    Nov 16 '18 at 13:36













  • Yeah, i want to load image from localhost

    – Rahmat Ullah
    Nov 16 '18 at 13:56
















1















I am making a project for image loading but whenever I try to load an image into circle image view through glide but whenever I run the app, the image view goes blank and error comes up from glide.



dp = view.findViewById(R.id.circleView);

GlideApp
.with(getActivity())
.load(serverResponse.getMessage().getPic())//C:/Apache24/htdocs/app2/User Files/User Id-102/User id 102.jpg
.listener(new RequestListener<Drawable>() {
@Override
public boolean onLoadFailed(@Nullable GlideException e, Object model, Target<Drawable> target, boolean isFirstResource) {
// log exception
Toast.makeText(getActivity(), "Error loading image", Toast.LENGTH_SHORT).show();
Log.v("glide", "Error loading image", e);
return false; // important to return false so the error placeholder can be placed
}

@Override
public boolean onResourceReady(Drawable resource, Object model, Target<Drawable> target, DataSource dataSource, boolean isFirstResource) {
return false;
}
})
.into(dp);


Log




2018-11-02 19:20:08.709 31664-31664/com.example.user.myapplication W/Glide: Load failed for C:/Apache24/htdocs/app2/User Files/User Id-102/User id 102.jpg with size [200x200]

class com.bumptech.glide.load.engine.GlideException: Failed to load resource
2018-11-02 19:20:08.718 31664-31664/com.example.user.myapplication V/glide: Error loading image

class com.bumptech.glide.load.engine.GlideException: Failed to load resource




I cannot figure out actually from where the error is occurring.










share|improve this question

























  • Can you give the url for the image.

    – Chirag Sharma
    Nov 16 '18 at 12:30











  • C:/Apache24/htdocs/app2/User Files/User Id-102/User id 102.jpg

    – Rahmat Ullah
    Nov 16 '18 at 13:18











  • are you trying to use Glide against some java projects? your image reference is not valid one, it seems to be a desktop resource path.

    – vikas kumar
    Nov 16 '18 at 13:36













  • Yeah, i want to load image from localhost

    – Rahmat Ullah
    Nov 16 '18 at 13:56














1












1








1








I am making a project for image loading but whenever I try to load an image into circle image view through glide but whenever I run the app, the image view goes blank and error comes up from glide.



dp = view.findViewById(R.id.circleView);

GlideApp
.with(getActivity())
.load(serverResponse.getMessage().getPic())//C:/Apache24/htdocs/app2/User Files/User Id-102/User id 102.jpg
.listener(new RequestListener<Drawable>() {
@Override
public boolean onLoadFailed(@Nullable GlideException e, Object model, Target<Drawable> target, boolean isFirstResource) {
// log exception
Toast.makeText(getActivity(), "Error loading image", Toast.LENGTH_SHORT).show();
Log.v("glide", "Error loading image", e);
return false; // important to return false so the error placeholder can be placed
}

@Override
public boolean onResourceReady(Drawable resource, Object model, Target<Drawable> target, DataSource dataSource, boolean isFirstResource) {
return false;
}
})
.into(dp);


Log




2018-11-02 19:20:08.709 31664-31664/com.example.user.myapplication W/Glide: Load failed for C:/Apache24/htdocs/app2/User Files/User Id-102/User id 102.jpg with size [200x200]

class com.bumptech.glide.load.engine.GlideException: Failed to load resource
2018-11-02 19:20:08.718 31664-31664/com.example.user.myapplication V/glide: Error loading image

class com.bumptech.glide.load.engine.GlideException: Failed to load resource




I cannot figure out actually from where the error is occurring.










share|improve this question
















I am making a project for image loading but whenever I try to load an image into circle image view through glide but whenever I run the app, the image view goes blank and error comes up from glide.



dp = view.findViewById(R.id.circleView);

GlideApp
.with(getActivity())
.load(serverResponse.getMessage().getPic())//C:/Apache24/htdocs/app2/User Files/User Id-102/User id 102.jpg
.listener(new RequestListener<Drawable>() {
@Override
public boolean onLoadFailed(@Nullable GlideException e, Object model, Target<Drawable> target, boolean isFirstResource) {
// log exception
Toast.makeText(getActivity(), "Error loading image", Toast.LENGTH_SHORT).show();
Log.v("glide", "Error loading image", e);
return false; // important to return false so the error placeholder can be placed
}

@Override
public boolean onResourceReady(Drawable resource, Object model, Target<Drawable> target, DataSource dataSource, boolean isFirstResource) {
return false;
}
})
.into(dp);


Log




2018-11-02 19:20:08.709 31664-31664/com.example.user.myapplication W/Glide: Load failed for C:/Apache24/htdocs/app2/User Files/User Id-102/User id 102.jpg with size [200x200]

class com.bumptech.glide.load.engine.GlideException: Failed to load resource
2018-11-02 19:20:08.718 31664-31664/com.example.user.myapplication V/glide: Error loading image

class com.bumptech.glide.load.engine.GlideException: Failed to load resource




I cannot figure out actually from where the error is occurring.







android android-glide image-loading






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 24 at 13:54









Zoe

13.1k85085




13.1k85085










asked Nov 16 '18 at 9:32









Rahmat UllahRahmat Ullah

1099




1099













  • Can you give the url for the image.

    – Chirag Sharma
    Nov 16 '18 at 12:30











  • C:/Apache24/htdocs/app2/User Files/User Id-102/User id 102.jpg

    – Rahmat Ullah
    Nov 16 '18 at 13:18











  • are you trying to use Glide against some java projects? your image reference is not valid one, it seems to be a desktop resource path.

    – vikas kumar
    Nov 16 '18 at 13:36













  • Yeah, i want to load image from localhost

    – Rahmat Ullah
    Nov 16 '18 at 13:56



















  • Can you give the url for the image.

    – Chirag Sharma
    Nov 16 '18 at 12:30











  • C:/Apache24/htdocs/app2/User Files/User Id-102/User id 102.jpg

    – Rahmat Ullah
    Nov 16 '18 at 13:18











  • are you trying to use Glide against some java projects? your image reference is not valid one, it seems to be a desktop resource path.

    – vikas kumar
    Nov 16 '18 at 13:36













  • Yeah, i want to load image from localhost

    – Rahmat Ullah
    Nov 16 '18 at 13:56

















Can you give the url for the image.

– Chirag Sharma
Nov 16 '18 at 12:30





Can you give the url for the image.

– Chirag Sharma
Nov 16 '18 at 12:30













C:/Apache24/htdocs/app2/User Files/User Id-102/User id 102.jpg

– Rahmat Ullah
Nov 16 '18 at 13:18





C:/Apache24/htdocs/app2/User Files/User Id-102/User id 102.jpg

– Rahmat Ullah
Nov 16 '18 at 13:18













are you trying to use Glide against some java projects? your image reference is not valid one, it seems to be a desktop resource path.

– vikas kumar
Nov 16 '18 at 13:36







are you trying to use Glide against some java projects? your image reference is not valid one, it seems to be a desktop resource path.

– vikas kumar
Nov 16 '18 at 13:36















Yeah, i want to load image from localhost

– Rahmat Ullah
Nov 16 '18 at 13:56





Yeah, i want to load image from localhost

– Rahmat Ullah
Nov 16 '18 at 13:56












2 Answers
2






active

oldest

votes


















1














I found the solution, I wanted to load file from the localhost server of my pc and I was using pc file system reference which glide does not support but when I passed the IP address along with the file address (e.g. http://(your ip like 192....)/your localhost project folder/image.jpg) and it worked.






share|improve this answer

































    0














    It seems you're using an invalid image reference. Glide can load resources from the internet (http or https) or from the device's (mobile/tablet) file system. But it seems your response contains a reference to an image file on your PC's file system.






    share|improve this answer
























    • So, what should i do now ? I want to load image from my localhost in my device

      – Rahmat Ullah
      Nov 16 '18 at 13:56











    • I think you will not be able to load the image until your server runs on your localhost. You have to publish these images somewhere on the global network (e.g. us AWS). Theoretically you can setup some shared folder(on your local PC) for your local network, and put some images there, and try to load an image with Glide by the following way: 127.0.0.1:{port}/{shared_folder}/{image}.{extension} But it's really theoretically. I'm not really sure how to setup such a thing correctly, that's why i prefer to dont waste your time, and upload your images to AWS

      – Mondok Tamas
      Nov 16 '18 at 14:05











    • oh,thanks for it

      – Rahmat Ullah
      Nov 16 '18 at 14:58












    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53334968%2ffailed-to-load-resource-when-loading-image%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    I found the solution, I wanted to load file from the localhost server of my pc and I was using pc file system reference which glide does not support but when I passed the IP address along with the file address (e.g. http://(your ip like 192....)/your localhost project folder/image.jpg) and it worked.






    share|improve this answer






























      1














      I found the solution, I wanted to load file from the localhost server of my pc and I was using pc file system reference which glide does not support but when I passed the IP address along with the file address (e.g. http://(your ip like 192....)/your localhost project folder/image.jpg) and it worked.






      share|improve this answer




























        1












        1








        1







        I found the solution, I wanted to load file from the localhost server of my pc and I was using pc file system reference which glide does not support but when I passed the IP address along with the file address (e.g. http://(your ip like 192....)/your localhost project folder/image.jpg) and it worked.






        share|improve this answer















        I found the solution, I wanted to load file from the localhost server of my pc and I was using pc file system reference which glide does not support but when I passed the IP address along with the file address (e.g. http://(your ip like 192....)/your localhost project folder/image.jpg) and it worked.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Mar 24 at 13:54









        Zoe

        13.1k85085




        13.1k85085










        answered Nov 17 '18 at 8:00









        Rahmat UllahRahmat Ullah

        1099




        1099

























            0














            It seems you're using an invalid image reference. Glide can load resources from the internet (http or https) or from the device's (mobile/tablet) file system. But it seems your response contains a reference to an image file on your PC's file system.






            share|improve this answer
























            • So, what should i do now ? I want to load image from my localhost in my device

              – Rahmat Ullah
              Nov 16 '18 at 13:56











            • I think you will not be able to load the image until your server runs on your localhost. You have to publish these images somewhere on the global network (e.g. us AWS). Theoretically you can setup some shared folder(on your local PC) for your local network, and put some images there, and try to load an image with Glide by the following way: 127.0.0.1:{port}/{shared_folder}/{image}.{extension} But it's really theoretically. I'm not really sure how to setup such a thing correctly, that's why i prefer to dont waste your time, and upload your images to AWS

              – Mondok Tamas
              Nov 16 '18 at 14:05











            • oh,thanks for it

              – Rahmat Ullah
              Nov 16 '18 at 14:58
















            0














            It seems you're using an invalid image reference. Glide can load resources from the internet (http or https) or from the device's (mobile/tablet) file system. But it seems your response contains a reference to an image file on your PC's file system.






            share|improve this answer
























            • So, what should i do now ? I want to load image from my localhost in my device

              – Rahmat Ullah
              Nov 16 '18 at 13:56











            • I think you will not be able to load the image until your server runs on your localhost. You have to publish these images somewhere on the global network (e.g. us AWS). Theoretically you can setup some shared folder(on your local PC) for your local network, and put some images there, and try to load an image with Glide by the following way: 127.0.0.1:{port}/{shared_folder}/{image}.{extension} But it's really theoretically. I'm not really sure how to setup such a thing correctly, that's why i prefer to dont waste your time, and upload your images to AWS

              – Mondok Tamas
              Nov 16 '18 at 14:05











            • oh,thanks for it

              – Rahmat Ullah
              Nov 16 '18 at 14:58














            0












            0








            0







            It seems you're using an invalid image reference. Glide can load resources from the internet (http or https) or from the device's (mobile/tablet) file system. But it seems your response contains a reference to an image file on your PC's file system.






            share|improve this answer













            It seems you're using an invalid image reference. Glide can load resources from the internet (http or https) or from the device's (mobile/tablet) file system. But it seems your response contains a reference to an image file on your PC's file system.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Nov 16 '18 at 13:32









            Mondok TamasMondok Tamas

            36139




            36139













            • So, what should i do now ? I want to load image from my localhost in my device

              – Rahmat Ullah
              Nov 16 '18 at 13:56











            • I think you will not be able to load the image until your server runs on your localhost. You have to publish these images somewhere on the global network (e.g. us AWS). Theoretically you can setup some shared folder(on your local PC) for your local network, and put some images there, and try to load an image with Glide by the following way: 127.0.0.1:{port}/{shared_folder}/{image}.{extension} But it's really theoretically. I'm not really sure how to setup such a thing correctly, that's why i prefer to dont waste your time, and upload your images to AWS

              – Mondok Tamas
              Nov 16 '18 at 14:05











            • oh,thanks for it

              – Rahmat Ullah
              Nov 16 '18 at 14:58



















            • So, what should i do now ? I want to load image from my localhost in my device

              – Rahmat Ullah
              Nov 16 '18 at 13:56











            • I think you will not be able to load the image until your server runs on your localhost. You have to publish these images somewhere on the global network (e.g. us AWS). Theoretically you can setup some shared folder(on your local PC) for your local network, and put some images there, and try to load an image with Glide by the following way: 127.0.0.1:{port}/{shared_folder}/{image}.{extension} But it's really theoretically. I'm not really sure how to setup such a thing correctly, that's why i prefer to dont waste your time, and upload your images to AWS

              – Mondok Tamas
              Nov 16 '18 at 14:05











            • oh,thanks for it

              – Rahmat Ullah
              Nov 16 '18 at 14:58

















            So, what should i do now ? I want to load image from my localhost in my device

            – Rahmat Ullah
            Nov 16 '18 at 13:56





            So, what should i do now ? I want to load image from my localhost in my device

            – Rahmat Ullah
            Nov 16 '18 at 13:56













            I think you will not be able to load the image until your server runs on your localhost. You have to publish these images somewhere on the global network (e.g. us AWS). Theoretically you can setup some shared folder(on your local PC) for your local network, and put some images there, and try to load an image with Glide by the following way: 127.0.0.1:{port}/{shared_folder}/{image}.{extension} But it's really theoretically. I'm not really sure how to setup such a thing correctly, that's why i prefer to dont waste your time, and upload your images to AWS

            – Mondok Tamas
            Nov 16 '18 at 14:05





            I think you will not be able to load the image until your server runs on your localhost. You have to publish these images somewhere on the global network (e.g. us AWS). Theoretically you can setup some shared folder(on your local PC) for your local network, and put some images there, and try to load an image with Glide by the following way: 127.0.0.1:{port}/{shared_folder}/{image}.{extension} But it's really theoretically. I'm not really sure how to setup such a thing correctly, that's why i prefer to dont waste your time, and upload your images to AWS

            – Mondok Tamas
            Nov 16 '18 at 14:05













            oh,thanks for it

            – Rahmat Ullah
            Nov 16 '18 at 14:58





            oh,thanks for it

            – Rahmat Ullah
            Nov 16 '18 at 14:58


















            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53334968%2ffailed-to-load-resource-when-loading-image%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Xamarin.iOS Cant Deploy on Iphone

            Glorious Revolution

            Dulmage-Mendelsohn matrix decomposition in Python