I want to render content that i have created locally using html component and put image in this html also by putting image in res folder in jar, i tried

<img src='images/down.png'></img>

<img src='res/images/down.png'></img>

<img src='./images/down.png'></img>

but nothing worked, any suggestion?

[EDIT] here is my code, i have no idea how to implement DocumentRequestHandler that is why i used DefaultDocumentRequestHandler

        DocumentRequestHandler handler = new DefaultDocumentRequestHandler();
        HTMLComponent component = new HTMLComponent(handler);
        component.getStyle().setBorder(Border.createLineBorder(1));

        component.getSelectedStyle().setBorder(Border.createLineBorder(1));
        component.setBodyText("<div><b>nirmal:</b>" +
                "<img src='res://images/down.png' /></div>");

tried res://images/down.png but nor worked my image is in res/images

link|improve this question

64% accept rate
can you give the code from creating and using the HtmlComponent ? – Andy Frédéric Sep 14 '11 at 10:25
feedback

1 Answer

up vote 2 down vote accepted

You need to explain how you loaded the HTML, images are loaded relatively to the base URL so you need to define the base URL when creating the HTML (its implicitly detected when loading via URL).

If you created the HTML via setHTML(String) then you need to give absolute paths depending on your DocumentRequestHandler implementation e.g. res://myImage.png or file://myImage.png .

link|improve this answer
see my edit, which path needs to be used? – Nirmal- thInk beYond Sep 15 '11 at 4:36
thanx for hint, jar://../../../../images/down.png worked – Nirmal- thInk beYond Sep 15 '11 at 5:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.