答案 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);
}
您可以发布一些代码,以便您的问题更清晰吗?