- 浏览: 3919 次
- 性别:
- 来自: 北京
最新评论
文章列表
在登录页面添加以下代码,前台使用Jquery框架。
<script type="text/javascript">
$(function() {
if (window != top) {
top.location.href = location.href;
}
});
</script>
JAVA提权执行Windows指令
- 博客分类:
- JAVA开发
1 前言
**平台要求实现FTP账户同步。FTP账户同步分为两步,第一步将平台用户写入FTP服务器(FileZilla Server)配置文件中(Dom4J读写XML文件),第二部重启FTP服务(指令为net stop/strat “FileZilla Server”)。
在 ...
String agent = request.getHeader("User-Agent");
boolean isMSIE = (StringTools.hasText(agent) && agent.toUpperCase()
.indexOf("MSIE") != -1);
// ie10以上的user agent中不再带有msie字符,
boolean isIE10 = StringTools.hasText(agent)
&& agent.indexOf("Trident&qu ...