資源簡介
SpringMVC完整實現跨服務器文件傳輸的demo代碼,實現文件服務器與其業務代碼分離
代碼片段和文件信息
package?com.qf.controller;
import?java.text.DateFormat;
import?java.text.ParseException;
import?java.text.SimpleDateFormat;
import?java.util.Date;
import?org.springframework.core.convert.converter.Converter;
/*
?*?Converter
?*? 實現給接口進行日期的轉換
?*? S:源類型,日期的字符串
?*? T:目標類型,日期類型
?*/
public?class?DateConverter?implements?Converter?{
@Override
public?Date?convert(String?source)?{
//?TODO?Auto-generated?method?stub
try?{
DateFormat?format?=?new?SimpleDateFormat(“yyyy-MM-dd?HH:mm:ss“);
if?(source.contains(“-“))?{
return?format.parse(source);
}
}?catch?(ParseException?e)?{
//?TODO?Auto-generated?catch?block
e.printStackTrace();
}
return?null;
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2017-11-26?19:19??20170712\
?????目錄???????????0??2017-11-26?19:19??20170712\ssh\
?????文件?????????841??2017-07-12?17:00??20170712\ssh\.classpath
?????文件????????1111??2017-07-12?17:00??20170712\ssh\.project
?????目錄???????????0??2017-11-26?19:19??20170712\ssh\.settings\
?????文件?????????567??2017-07-12?17:00??20170712\ssh\.settings\.jsdtscope
?????文件?????????364??2017-07-12?17:00??20170712\ssh\.settings\org.eclipse.jdt.core.prefs
?????文件?????????461??2017-07-12?17:00??20170712\ssh\.settings\org.eclipse.wst.common.component
?????文件?????????345??2017-07-12?17:00??20170712\ssh\.settings\org.eclipse.wst.common.project.facet.core.xm
?????文件??????????49??2017-07-12?17:00??20170712\ssh\.settings\org.eclipse.wst.jsdt.ui.superType.container
?????文件???????????6??2017-07-12?17:00??20170712\ssh\.settings\org.eclipse.wst.jsdt.ui.superType.name
?????文件?????????502??2017-07-12?17:00??20170712\ssh\.springBeans
?????目錄???????????0??2017-11-26?19:19??20170712\ssh\WebContent\
?????目錄???????????0??2017-11-26?19:19??20170712\ssh\WebContent\me
?????文件??????????39??2017-07-12?17:00??20170712\ssh\WebContent\me
?????目錄???????????0??2017-11-26?19:19??20170712\ssh\WebContent\WEB-INF\
?????目錄???????????0??2017-11-26?19:19??20170712\ssh\WebContent\WEB-INF\lib\
?????文件??????445288??2017-07-12?17:01??20170712\ssh\WebContent\WEB-INF\lib\antlr-2.7.7.jar
?????文件??????497865??2017-07-12?17:01??20170712\ssh\WebContent\WEB-INF\lib\c3p0-0.9.5.2.jar
?????文件???????64110??2017-07-12?17:00??20170712\ssh\WebContent\WEB-INF\lib\classmate-1.3.0.jar
?????文件????????4615??2017-07-12?17:00??20170712\ssh\WebContent\WEB-INF\lib\com.springsource.org.aopalliance-1.0.0.jar
?????文件??????122589??2017-07-12?17:01??20170712\ssh\WebContent\WEB-INF\lib\com.springsource.org.apache.commons.dbcp-1.2.2.osgi.jar
?????文件???????54080??2017-07-12?17:00??20170712\ssh\WebContent\WEB-INF\lib\com.springsource.org.apache.commons.fileupload-1.2.0.jar
?????文件??????110412??2017-07-12?17:01??20170712\ssh\WebContent\WEB-INF\lib\com.springsource.org.apache.commons.io-1.4.0.jar
?????文件???????61464??2017-07-12?17:00??20170712\ssh\WebContent\WEB-INF\lib\com.springsource.org.apache.commons.logging-1.1.1.jar
?????文件???????97124??2017-07-12?17:01??20170712\ssh\WebContent\WEB-INF\lib\com.springsource.org.apache.commons.pool-1.5.3.jar
?????文件?????1642154??2017-07-12?17:01??20170712\ssh\WebContent\WEB-INF\lib\com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar
?????文件??????313898??2017-07-12?17:01??20170712\ssh\WebContent\WEB-INF\lib\dom4j-1.6.1.jar
?????文件?????1350626??2017-07-12?17:01??20170712\ssh\WebContent\WEB-INF\lib\freemarker.jar
?????文件???????11655??2017-07-12?17:01??20170712\ssh\WebContent\WEB-INF\lib\hibernate-c3p0-5.2.9.Final.jar
?????文件???????75288??2017-07-12?17:00??20170712\ssh\WebContent\WEB-INF\lib\hibernate-commons-annotations-5.0.1.Final.jar
............此處省略115個文件信息
評論
共有 條評論