Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 gwt-celltable 列中显示一个带有换行符的字符串。我该怎么做?有人能帮我吗。
strBuilder.append("line 1 "); strBuilder.append("line 2");
尝试
strBuilder.append("line 1").append("</br>"); strBuilder.append("line 2");