如何在JTextArea中将数据拆分为多行?

时间:2014-02-17 11:53:27

标签: java swing jtextarea

如何将主机的每一行放在邮件正文中?我使用JTextArea

String host = InetAddress.getLocalHost().getHostName().toString();
texto_recepcion.setText(host + texto_recepcion.getText() + dpRecepcion.getAddress() + " " + mensaje_recibido + "\n");

现在如何:

enter image description here

2 个答案:

答案 0 :(得分:1)

我用追加功能解决了我的问题。

String host = InetAddress.getLocalHost().getHostName().toString();

texto_recepcion.append(host); // ***Use the function append for solve the problem***

texto_recepcion.setText(texto_recepcion.getText() + dpRecepcion.getAddress() + " " + mensaje_recibido + "\n");

非常感谢

答案 1 :(得分:0)

为什么不在字符串的开头添加换行符“\ n”?

texto_recepcion.setText("\n" + host + texto_recepcion.getText() + dpRecepcion.getAddress() + " " + mensaje_recibido);