我想在数组

时间:2016-01-03 02:45:16

标签: java

像实例一样, 在线购买账单创建。我想将项目插入数组并与费率一起显示。但是我无法将项目插入到数组中。我该怎么做?

1 个答案:

答案 0 :(得分:2)

ArrayList可能更好,因为您事先并不知道数组的大小。

初​​始化:

List<String> billInfo = new ArrayList<String>();

流程信息:

billInfo.add(your_string_here); // this add "your_string_here" to the billInfo array

如果你有东西需要循环,你也可以使用for循环(例如,Elements Jsoup节点)

for(T t : ts){
    billInfo.add(t.someMethodThatReturnsSomeInformation);
}

您可以发布一些代码,以便您的问题更清晰吗?