文章列表
private boolean export(String path, String saveName)
{
ServletOutputStream sos = null;
FileInputStream in = null;
try
{
String filename = URLDecoder.decode(path, "utf-8");
if (null == filename || "".equals(filename))
...