08 2017 档案

摘要:/** * 下载远程服务器文件 */ @RequestMapping("/download_file") public void downloadFile(HttpServletRequest request,HttpServletResponse response){ OutputStream os = null; R... 阅读全文
posted @ 2017-08-15 11:27 start逍遥 阅读(2150) 评论(0) 推荐(0)
摘要:1. 自反性:A.equals(A)要返回true. 2. 对称性:如果A.equals(B)返回true, 则B.equals(A)也要返回true. 3. 传递性:如果A.equals(B)为true, B.equals(C)为true, 则A.equals(C)也要为true. 说白了就是 A 阅读全文
posted @ 2017-08-07 15:12 start逍遥 阅读(131) 评论(0) 推荐(0)