我想在我的电脑上提供一个图像链接到 jtextpane 上的一行。我给 jtextpane “text/html” ttype
jTextPane1.setContentType("text/html");
我为给图像写了这段代码:
html文本:
<img src= file:/"+myimageplace+" alt=\"Click to Open Image\" width=\"30\" height=\"30\">
这适用于显示图像。
但我想把那个图像变成这样的图像:
<a href=\"file:/"+myimageplace+">\"<img src= file:/"+mytext+" alt=\"Click to Open Image\" width=\"30\" height=\"30\"></a>
但这不起作用?
我怎样才能做到这一点?谢谢。