所以我有 3 个数组列表,它们的大小都相同,我试图将它们打印在一个可以工作的 excel 文件中,但是 IP 和 GEO 只是一遍又一遍地返回第一个值。
这是我的代码:
for (String url : IPGrabber.URLArray) {
Row row = sheet.createRow(rownum++);
row.createCell(0).setCellValue(url);
for (String ip : IPGrabber.IPArray) {
row.createCell(1).setCellValue(ip);
}
for (String geo : GEOLookup.GEOArray) {
row.createCell(2).setCellValue(geo);
}
}
这是excel中的输出
http://www.google.com 199.59.148.82 United States
http://www.google.com 199.59.148.82 United States
http://www.mcbay.net 199.59.148.82 United States
http://www.facebook.com 199.59.148.82 United States
http://twitter.com 199.59.148.82 United States
如您所见, URLArray 和 IPArray 重复相同的值
任何帮助将不胜感激尝试了许多不同的方法。