Swing JTextArea组件文字对齐方向

2025-01-19 14:39:08
推荐回答(1个)
回答1:

假设你原有“AAA”在JTextArea里面显示了JTextAreajta;你可以获取到StringsrcCont=jta.getText();你要新加内容Stringappend="BBB";jta.setText(srcCont+append);