ArrayList<String> entries = new ArrayList<String>();
entries.add(visits);
System.out.println(visits);
列表的输出如下[wt45,wt45,wt45,88ty,de66,wt45,wt45,wt45]。现在我需要在文本文件中分离和写入数字可以任何人建议我如何做到这一点?我正在jsp页面上做所有这些工作。
文本文件应该是这样的:
45
45
45
88
66
45
45
45
答案 0 :(得分:0)
尝试使用示例将其放入JSP中,希望下面的代码可以帮助
public static void main(String[] args) {
String[] visits = {"wt45", "wt45", "wt45", "88ty", "de66", "wt45", "wt45", "wt45"};
ArrayList<String> entries = new ArrayList<String>();
for (String s : visits) {
String result = new String();
for (int j = 0; j < s.length(); j++) {
Character chars = s.charAt(j);
if (Character.isDigit(chars)) {
result += chars;
}
}
entries.add(result);
System.out.println(result);
}
}