`
TagStorage
  • 浏览: 11449 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论
文章列表
 0000
1. 确认你的虚拟机操作系统中安装了内核源码,如果安装了在/usr/src下面会有文件linux-headers-`uname -r` 2. 如果没有,就要下载源码了 sudo apt-get install linux-headers-`uname -r`   3. 再次运行vm tools的安装脚本。
  手动来注册WINDOWS服务。第一步:点“开始-运行-输入‘CMD’”,输入“regedit”第二步:在展开注册表,找到"HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services",在右侧窗格中显示的就是本机安装的服务项。
request.getContextPath: request.getPathInfo: /path-info request.getServletPath: /servlet-path request.getRequestURL: http://domain/servlet-path/path-info request.getRequestURI: /servlet-path/path-info  
1.       expr expression expr只能用于一元操作符,不支持二元操作符 1 x=1 2 x=$(expr $x + 
  public Process exec(String command) throws IOException  和   public Process exec(String cmdarray[]) throws IOException  其实是等价的,最终都会调用   public Process exec(String[] cmdarray, String[] envp, File dir) throws IOException  因为如下代码: public Process exec(String command, String[] envp, File dir) ...
在${TOMCAT_HOMT}/conf/server.xml中,处理请求的Connector中这样配置 <Connector port="8080" protocol="HTTP/1.1"  URIEncoding="UTF-8" />
1.  2.   3.   4. 
null引用强制转换是不会报NullPointerException的。 Object abcd = null; Parser test = (Parser) abcd; String test1 = (String) abcd; System.out.println(test); System.out.println(test1); 输出: null null
Global site tag (gtag.js) - Google Analytics