上一页 1 ··· 52 53 54 55 56 57 58 59 60 ··· 74 下一页
  2017年5月25日
摘要: 先来个 阿里的 Java 开发手册(2017.5.20 发布 v1.2.0 .pdf) 本文来自:http://blog.csdn.net/sinat_27115575/article/details/72644967 阅读全文
posted @ 2017-05-25 10:12 z5337 阅读(110) 评论(0) 推荐(0)
  2017年5月24日
摘要: 本文来自:https://meta.appinn.com/t/topic/3130 原理很简单,所以不说了。 用法很简单,先把下面的代码保存为书签(复制到地址里面),在需要的页面里点击一下这个书签就好。淘宝/天猫的商品和店铺首页链接都可以净化,其他地方也可以试一试,万一起作用呢!岂不是可以轻松获得一 阅读全文
posted @ 2017-05-24 20:30 z5337 阅读(416) 评论(0) 推荐(0)
  2017年5月21日
摘要: 本文内容来自:http://kf.qq.com/faq/140225MveaUz150819mYFjuE.html 微信商户常用银行账号长度参考表 微信支付支持的银行账号长度,如下表所示: 银行类型 币种 对公卡号 对私卡号 <!--[if !supportMisalignedRows]--> <! 阅读全文
posted @ 2017-05-21 13:14 z5337 阅读(478) 评论(0) 推荐(0)
  2017年5月16日
摘要: String referer = request.getHeader("referer"); if(referer == null || !referer.startsWith("http://localhost")){ response.sendRedirect("/day06/index.htm 阅读全文
posted @ 2017-05-16 23:26 z5337 阅读(193) 评论(0) 推荐(0)
摘要: // 1. request.getRequestDispatcher("/index.html").forward(request,response); // 以 / 开头,对于浏览器 / 表示网站,对于服务器 / 表示当前的 web应用 // \ 反斜杠 用于访问硬盘资源的路径分隔符 // 2. 阅读全文
posted @ 2017-05-16 23:08 z5337 阅读(176) 评论(0) 推荐(0)
摘要: String data = "aaaaa"; request.setAttribute("data",data); // 将数据存在 request request.getRequestDispatcher("/message.jsp").forward(request,response); // 阅读全文
posted @ 2017-05-16 23:00 z5337 阅读(162) 评论(0) 推荐(0)
摘要: 解决 get 提交的乱码 (手工处理) String username = request.getParameter("username"); username = new String(user.getBytes("iso8859-1"),"UTF-8"); System.out.println( 阅读全文
posted @ 2017-05-16 22:30 z5337 阅读(176) 评论(0) 推荐(0)
摘要: 获取方式一 InputStream in = request.getInputStream(); int len = 0; byte buffer[] = new byte[1024]; while((len = in.read(buffer)) > 0) { System.out.println( 阅读全文
posted @ 2017-05-16 21:31 z5337 阅读(881) 评论(0) 推荐(0)
  2017年5月14日
摘要: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList 在这个项右边增加 DWord 值,名称为用户名,值为 0,即可隐藏不想显示在欢迎屏幕上的用户。(经测试可 阅读全文
posted @ 2017-05-14 09:10 z5337 阅读(216) 评论(0) 推荐(0)
  2017年5月11日
摘要: 最新版本 69.0.3497.92 (x64) 解决办法: https://www.cnblogs.com/liuxianan/p/disable-chrome-extension-warning.html 使用工具: https://x64dbg.com/ 批处理的 下载地址 转自:http:// 阅读全文
posted @ 2017-05-11 08:44 z5337 阅读(728) 评论(0) 推荐(0)
上一页 1 ··· 52 53 54 55 56 57 58 59 60 ··· 74 下一页