当前位置: 技术问答>java相关
i have a string="<html><body><font color='red'>i want display</font></body><html>", can i display it in java?
来源: 互联网 发布时间:2015-02-04
本文导语: | 这个好玩不好玩: JLabel theText = new JLabel( "Hello! This is a multiline label with bold " + "and italic text. " + "It can use paragraphs, horizontal lines, " + "colors " + "and most of...
|
这个好玩不好玩:
JLabel theText = new JLabel(
"Hello! This is a multiline label with bold "
+ "and italic text.
JLabel theText = new JLabel(
"Hello! This is a multiline label with bold "
+ "and italic text.
"
+ "It can use paragraphs, horizontal lines, "
+ "colors "
+ "and most of the other basic features of HTML 3.2");
|
其实 grantdyg已经给出了很好的代码,我的与他差不多,那天只是要下班了不想写了。
给你吧,差不多一样的,不用document:
jEditorPane1.setContentType("text/html");
jEditorPane1.setText("Hello! This is a multiline label with bold "
+ "and italic text.
"
+ "It can use paragraphs, horizontal lines, "
+ "colors "
+ "and most of the other basic features of HTML 3.2");
这种方法有一个问题,如果用于聊天室的构造。你看出来的吧。
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。