作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 foreach 数组的最后一项中附加某个字符串。
该程序运行得非常好。给定“待处理”数组中的项目,它应该将输出值附加到待处理值的最后一项中:
String a = out + "-" + rptdate + "-";
for (String pn : pending) {
//checks if total value + pending length value is less than 160
if (a.length() + pn.length() < 160) { // < to leave room for the comma as well
if (a.length() != 0) {
if (a.length() != 14) {
a += ",";
}
}
a += pn;
} else {
resultingStrings.add(a);
a = pn;
Log.d("messages", a);
}
}
resultingStrings.add(a);
for (String r : resultingStrings) {
sendSMS(r);
}
最佳答案
尝试简单的代码
int size = pending.size();
int index = 0;
for (String pn : pending) {
if(index == size - 1){
// it is last foreach => add your last string here
}
index++;
...
}
希望这有帮助
关于java - 如何在最后一个foreach项目中添加字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33205121/
我是一名优秀的程序员,十分优秀!