s****3 发帖数: 1291 | 1 __________ replyDocs = new _________
Object>();
//assume that replyDocs get's filled with something..... and then
execution continues below
if(replyDocs != null && !replyDocs.isEmpty()){
for(String key : replyDocs.keySet()){
_______ summaryObj = (______)replyDocs.get(key);
File newDirectory = new File(parentPath + "\" + dateStamp);
newDirectory.mkdirs();
File newFile = new File(ne... 阅读全帖 |
|
t******t 发帖数: 21 | 2 SummaryObj SummaryObj or AnyType AnyType as long as they are same
that seems to be the test point to me |
|
s****3 发帖数: 1291 | 3 谢谢指点。
这一行还是不明白:
_______ summaryObj = (______)replyDocs.get(key); |
|