java 在表格单元格中换行文本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 在表格单元格中换行文本相关的知识,希望对你有一定的参考价值。

//  String should be HTML with body style defining max width
diffString = "<html><body style='width: 120px'>" + mzFormat.format(diff) + "<b><font color=\"blue\"> (" + StringUtils.join(losses, " or ") + ")</font></b></html>";

static class WordWrapCellRenderer extends JLabel implements TableCellRenderer {

	@Override
	public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
		
		setText(value.toString());
		validate();
		setSize(table.getColumnModel().getColumn(column).getWidth(), getPreferredSize().height);
		
		if (table.getRowHeight(row) < getPreferredSize().height)
			table.setRowHeight(row, getPreferredSize().height);
		
		return this;
	}
}

以上是关于java 在表格单元格中换行文本的主要内容,如果未能解决你的问题,请参考以下文章

如何从表格视图中的选定单元格中获取文本?

extjs网格面板单元格中的多行文本

Markdown表格中换行、合并单元格

避免在ipython notebook markdown单元格的表格标题中换行。

表格单元格中的按钮无法点击

在表格视图单元格中使用自定义 XIB