XPath 简介 XPath 是一门在 XML 文档中查找信息的语言。XPath 用于在 XML 文档中通过元素和属性进行导航。 在学习之前应该具备的知识: 在您继续学习之前,应该对下面的知识有基本的了解: · HTML / XHTML · XML / XML 命名空间 如果您希望首先学习这些项目,请在我们的 首页 访问这些教程。 什么是 XPath? · XPath 使用路径表达式在 XML 文档中进行导航 · XPath 包含一个...

阅读全文>>

public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { String name = request.getParameter("name"); byte[] bytes = name.getBytes("ISO8859-1"); name = new String(bytes,"UTF-8"); response.setContentType("text/html;charset=u...

阅读全文>>

package com.itheima.response; import java.awt.Color; import java.awt.Font; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.image.BufferedImage; import java.io.IOException; import java.util.Random; import javax.imageio.ImageIO; import javax.servlet.ServletException;...

阅读全文>>

public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { String ip = request.getRemoteAddr(); System.out.println(ip); //读取 3.txt String path3 = getServletContext().getRealPath("/WEB-INF/5.txt"); System.out.print...

阅读全文>>

1 ssh-server 2 vim 3 解决root登陆问题 vi /etc/ssh/sshd_config Ciphers aes128-cbc,aes192-cbc,aes256-cbc,aes128-ctr,aes192-ctr,aes256-ctr,3des-cbc,arcfour128,arcfour256,arcfour,blowfish-cbc,cast128-cbc   MACs hmac-md5,hmac-sha1,umac-64@openssh.com,hmac-ripemd160,hmac-sha1-96,hmac-md5-96 &nbs...

阅读全文>>

1,下载jdk-7u45-linux-x64.tar.gz       网址:http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html 2, 解压JDK          进入JDK的下载目录 Html代码   sudo tar zxvf jdk-...

阅读全文>>

新装了 ubuntu的的系统, 然后配置环境, 1、安装了 jdk 2、安装了 mysql 连接mysql的时候报错, 解决办法 SharpSSH或JSCH使用diffie-hellman-group1-sha1和diffie-hellman-group-exchange-sha1密钥交换算法,而OpenSSH在6.7p1版本之后默认不再采用以上算法,需要手工添加。 在/etc/ssh/sshd_config中添加: Ciphers aes128-cb...

阅读全文>>

抓包时常用 状态码分析 1xx informational 信息不完全 2xx success 处理成功 3xx redirection 重定向 4xx client error 客户端错误 5xx sever error 服务端错误 200 : ok 302 : 请求重定向 304 : 资源文件重定向 (本定向) 404:  客户端访问路径文件有稳定 500: 服务器异常

阅读全文>>