作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 ArrayList ArrayList<String> externalDataList = new ArrayList<>(1600);
我想在 textArea 中显示前 3 个字符串,但我无法成功:
这是我的代码
textareaShowPreview.setPrefRowCount(3);
Iterator<String> it = externalDataList.iterator();
int tot = 0;
while(it.hasNext() && tot<3){
String element = it.next();
textareaShowPreview.setText(element + "\n");
System.out.println("elements are: " + element);
tot++;
}
sout 正确打印前 3 个字符串
element are: 23/05/2007 ,30.9455,31.2545,30.9091,30.9545,7518142
element are: 24/05/2007 ,30.6545,31.0909,30.5364,30.6909,12851606
element are: 25/05/2007 ,30.6636,30.8545,30.4818,30.8091,9392088
但是在textArea中我只有第一个
我必须如何修改我的代码才能在 textArea 中显示所有三个字符串,每行一个字符串?
最佳答案
关于arraylist - 如何在 ArrayList 的 textArea 中设置文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17103275/
我是一名优秀的程序员,十分优秀!