Java代码加:response.setContentType("application/vnd.ms-excel");response.setHeader("Content-Disposition", "attachment; filename=" + new String((userExpand ...
分类:
Web程序 时间:
2017-10-27 20:40:03
阅读次数:
153
原文地址:http://www.jianshu.com/p/ff32a462947f ...
分类:
编程语言 时间:
2017-10-21 14:22:38
阅读次数:
290
内核驱动中到处的函数和模块中导出的函数重复了。 ...
分类:
其他好文 时间:
2017-10-14 14:56:45
阅读次数:
256
一.安装 1)注册Adobe账号,注册地址:Adobe注册 2)下载地址:Adobe下载 3)安装:试用期7天的版本 二.版本介绍 1)最新版本:Adobe Photoshop CC 2)历史版本:Photoshop CS6、Photoshop CS5、Photoshop CS3等 三.学习教程 1 ...
分类:
其他好文 时间:
2017-10-06 10:28:16
阅读次数:
131
学习来源地址: 1,https://github.com/bdeonovic/IDPASE.jl 2, https://www.healthcare.uiowa.edu/labs/au/ Prepare necessary input files (http://www.cnblogs.com/re ...
分类:
其他好文 时间:
2017-09-29 22:46:33
阅读次数:
194
用JS来获取地址栏(URL)里面的参数 首先,我们要先获取地址栏里的内容。这里就要用到location对象。 location最有用的BOM对象之一,它提供了与当前窗口中加载的文档有关的信息。并且还将URL解析为独立的片段,我们可以通过不同的属性来访问这些片段。 location属性: 例如:htt ...
分类:
Web程序 时间:
2017-09-26 19:22:28
阅读次数:
284
class Solution { public int longestValidParentheses(String s) { int left=-1; Stack stack=new Stack(); int ret=0; for(int i=0;i<s.length();i++) { ... ...
分类:
其他好文 时间:
2017-09-23 13:41:19
阅读次数:
206
Given a non-empty string s, you may delete at most one character. Judge whether you can make it a palindrome. Example 1: Input: "aba" Output: True Exa ...
分类:
其他好文 时间:
2017-09-20 19:36:17
阅读次数:
167
转载请声明来自:http://www.cnblogs.com/chixinzei/p/7504272.html 谢谢! 目前已实现功能 数据库验证,druid数据源,页面定制,restful登录,shibboleth idp saml2.0整合 cas相关参考文档 http://www.cnblog ...
分类:
其他好文 时间:
2017-09-11 13:10:50
阅读次数:
993
可以从网站上404模板,下载后进行修改即可。 一个项目难免会出现404页面,为了防止404错误暴露给用户,需要提前做好404页面。在404页面中给用户友好的提示,同时可以自动重定向到项目的主页。 web.xml配置404页面 一个404页面的模板: 404.jsp (页面中引用的图片要放到image ...
分类:
其他好文 时间:
2017-09-09 17:19:39
阅读次数:
181