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