单项选择题

已知zipname是一个压缩文件名。则zipname在下列代码中出现的正确位置是( )。
ZipInputStream zin=
new ZipInputStzeam(new FileInputStream(①));
ZipEntry entry;
while((entry=zin.getNextEntry(②))!=null)
fileCombo.addhern(entry.getNamc(③));
zin.closeEntry(④);
zin.close();

A.①
B.②
C.③
D.④