制作简单的文本编辑器

时间:2013-04-08 11:05:43

标签: java jeditorpane

我需要在Java应用程序中创建一个简单的文本编辑器。 我在网上搜索,发现JEditorPane可能符合我的需要。

我需要的是以下内容:让用户有机会设置文本Bold,Underlined和Italic,并在JEditorPane上方放置3个按钮(如果可能,还有链接)。但看起来并不那么简单。你有一些关于如何制作的建议和简单的例子吗? 也许JeditorPane不是最好的选择

1 个答案:

答案 0 :(得分:1)

JEditorPane支持html和一些RTF(通过text / rtf)。这是一个例子:

JEditorPane textarea = new JEditorPane("text/html", "");
textarea.setText(textarea.getText + "I'm regular <i>i'm italic</i>");