Loading images from jars for Swing HTML

前端 未结 4 764
余生分开走
余生分开走 2020-11-27 07:07

While this answer works to load images from Jar files for ImageIcons, I cannot seem to get the right path for images referenced in Swing HTML.

This disp

4条回答
  •  夕颜
    夕颜 (楼主)
    2020-11-27 07:23

    Without actually having tried it, I would assume that the HTML renderer can access your image if you include the resource URL in your HTML code:

    String p = getClass().getResource("icons/folder_link.png" ).toString();
    new JLabel("
    100
    ") );

提交回复
热议问题