gpt4 book ai didi

java - 如何将文本添加到 JTextArea?

转载 作者:行者123 更新时间:2023-12-01 23:12:21 28 4
gpt4 key购买 nike

我正在制作一个java文本编辑器,但我似乎不知道如何插入一行“[code][/code]”文本,这是我正在尝试编程的内容。插入的方法称为“插入”。所以它必须是插入的东西,(在 JTextArea 中插入文本字符串的东西)

/////////////////// CODE //////////////////////////////////////////////////////////////////////////////////////////////////

this.insert.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {


}
});
/////////////// END OF CODE ///////////////////////////////////////////////////////////////////

最佳答案

设置/分配文本到 JTextArea 的简单示例..这不是解决方案,但它会帮助您...

JTextArea textArea = new JTextArea(
"This is an editable JTextArea. " +
"A text area is a \"plain\" text component, " +
"which means that although it can display text " +
"in any font, all of the text is in the same font."
);
textArea.setFont(new Font("Serif", Font.ITALIC, 16));
textArea.setLineWrap(true);
textArea.setWrapStyleWord(true);

虽然要设置文本..使用此方法

void insert(String str, int pos) 
Inserts the specified text at the specified position.

public void setText(String t)
Sets the text of JTextArea

如需引用和帮助请关注jtextareaguide

链接到video tutorial

Simple Editor指南在Java中

关于java - 如何将文本添加到 JTextArea?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21693254/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com