我在课堂上有以下代码。当它处理时,它会生成具有相同标签值的 xml,该标签值位于数据库的最新行中。我什至尝试重新初始化对象,但它不起作用
while (tempResultSet.next()) {
conList = new ContentList();
conChannel = new ContentChannel();
conChannel.setType(String.valueOf(tempResultSet.getInt("Key")));
pubDate.setStart(tempResultSet.getTimestamp("PUBLISHSTARTDATETIME").toString());
conElement.setPubDate(pubDate);
conElement.setConChannel(conChannel);
conList.setConElement(conElement);
newConList.add(conList);
conList = null;
conChannel = null;
}