繁体   English   中英

如何在 jtable 中进行自动换行?

[英]how to make an auto line break in jtable?

嗨,我正在使用 java jtable

 dff[i] = new DefaultTableModel(
                        new Object[][] {
                            {"ID",tab[i].get("id")},
                            {"Titre",tab[i].get("title")},
                            {"Auteur",tab[i].get("authors")},
                            {"Date",tab[i].get("date")},
                            {"Resume","Substitution ciphers are codes in which each letter of the alphabet has one fixed substitute, and the word divisions do not change.."},
                        },
                        new String[] {
                            "New column",""
                        }
                    );

             jj[i]= new JTable(dff[I]); 

但我得到

https://i.stack.imgur.com/sCuNn.png

如果可能的话,我想在抽象部分添加一条自动换行符

非常感谢 camickr 我添加了<HTML> <p>及其工作

tab[i].get("abstract")="Substitution ciphers are codes in which each letter of the alphabet has one fixed substitute, and the word divisions do not change.";

{"Resume","<html><p>"+tab[i].get("abstract")+"</p></html>"}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM