vote up 0 vote down star

I have a JEditorPane created by this way:

JEditorPane pane = new JEditorPane("text/html", "<font face='Arial'>" + my_text_to_show + "<img src='/root/img.gif'/>" + "</font>");

I put this pane on a JFrame.

Text is shown correctly, but I can't see the picture, there is only a square indicating that there should be an image (i.e.: "broken image" shown by browsers when picture has not been found)

flag

2 Answers

vote up 1 vote down check

You have to provide type, and get the resource. That's all. My tested example, but I'm not sure about formating. Hope it helps:

import java.io.IOException;
import javax.swing.JEditorPane;
import javax.swing.JFrame;

public class Test extends JFrame {

    public static void main(String[] args) throws Exception {
    	Test.createAndShowGUI();
    }

    private static void createAndShowGUI() throws IOException {

    	JFrame.setDefaultLookAndFeelDecorated(true); 

    	JFrame frame = new JFrame("HelloWorldSwing");

    	frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    	String imgsrc = 
            Test.class.getClassLoader().getSystemResource("a.jpg").toString();
    	frame.getContentPane().add(new JEditorPane("text/html",
            "<html><img src='"+imgsrc+"' width=200height=200></img>"));
    	frame.pack();

    	frame.setVisible(true);
    }
}
link|flag
I've already tried this way and I ever get a null pointer exception :( – GIANCARLO Feb 21 at 16:25
I don't know where you got the exception,but you can try my example. And put a.jpg into the same directory with this class. you can compile it as javac Test.java && run java Test. And because I haven't set the size of the window you can set it larger to see image. – michal Feb 21 at 17:09
(ClassLoader.getSystemResource is a static method. getResource would be a better choice.) – Tom Hawtin - tackline Feb 21 at 19:28
vote up 0 vote down

The JEditorPane is using HTMLDocument.getBase to locate relative urls as well, so if you are displaying content from a directory, make sure to set the base on the html document so it resolves urls relative to the base directory.

Depending on where that image actually is, you might want to extend HTMLEditorKit+HTMLFactory+ImageView and provide a custom implementation of ImageView, which is responsible for mapping the attribute URL to the image URL, too.

link|flag

Your Answer

Get an OpenID
or

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