在显示文件中的数据时,在jLabel中添加新行

时间:2018-03-29 04:46:23

标签: java swing

我在jLabel中显示文件的内容。我想在从文件读取的每一行之后添加新行,这是jLabel.setText()代码,

LeftSideDisplay.setText(LeftSideDisplay.getText() + entry.getKey() + entry.getValue().toString() //add new line here);

我试过了,

LeftSideDisplay.setText(LeftSideDisplay.getText() + entry.getKey() + entry.getValue().toString() + "<html><br/></html>");

仍然没有帮助。

0 个答案:

没有答案