方法一:首先打开apache中conf下的http.conf文件打开虚拟主机的注释:如下去掉第二行前面的#即可# Virtual hosts# Include conf/extra/httpd-vhosts.conf再打开conf目录下的extra目录中的httpd-vhosts.conf文件在文件...
分类:
Web程序 时间:
2014-11-04 17:02:08
阅读次数:
354
1、虚拟主机配置windows:1)加载配置虚拟主机的配置文件,在Apache/conf中找到httpd.conf文件,并搜索出以下的两句话,将Include conf/extra/httpd-vhosts.conf前的#去掉;# Various default settings#Include c...
分类:
Web程序 时间:
2014-11-04 16:46:19
阅读次数:
221
Given a sorted array, remove the duplicates in place such that each element appear onlyonceand return the new length.Do not allocate extra space for a...
分类:
其他好文 时间:
2014-11-04 12:28:18
阅读次数:
177
Given a linked list, return the node where the cycle begins. If there is no cycle, returnnull.Follow up:Can you solve it without using extra space?思路:...
分类:
其他好文 时间:
2014-11-04 10:40:26
阅读次数:
143
题目描述:
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.
Do not allocate extra space for another array, you must do this in...
分类:
其他好文 时间:
2014-11-04 09:20:30
阅读次数:
137
Determine whether an integer is a palindrome. Do this without extra space.要求是不能使用额外的空间,言下之意就是不能先转化成字符串来进行处理,所以得想另外一种办法。额外考虑:负数属于回文数字?思路:直接来截取最低位和最高位来进...
分类:
其他好文 时间:
2014-11-03 22:26:57
阅读次数:
246
Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?思路:快慢指针的应用。快慢指针指的是移动的步长,即每次向前移动的快慢。例如可以让快指...
分类:
其他好文 时间:
2014-11-03 20:42:18
阅读次数:
204
题目: 升级《陋习手记》关联列表与明细部分 目的: 学习和使用fragment argument掌握从 fragment 中启动 activity优化获取extra信息的方法:通过fragment argument 要求 课前完成作业、课上完成遗留问题
分类:
其他好文 时间:
2014-11-03 12:50:31
阅读次数:
186
一台服务器安装了Apache,如何绑定多个域名或网站呢?最简单高效的方法如下:1. 先打开Apache的配置文件httpd.conf,在这个文件,找到这句:#Include etc/extra/httpd-vhosts.conf(根据安装路径不同,上面的路径会略有不同)把前面的#去掉,即开启了使用虚...
分类:
Web程序 时间:
2014-11-02 13:50:23
阅读次数:
150
详细看图,下面贴出大体步骤
一。右键项目,选择Export
二。选择java下面的javadoc
三。create javadoc for members with visibility解释
四。选好路径
五。选择引用文件和项目以生成链接。(全选就行,也就是下图的Select All,警告忽略)
六。Extra javadoc options填上(-encoding 编码名 -charset 编码名,项目是UTF-8编码的就用下图方式),JRE source compatibility 我的jdk是1.7的...
分类:
编程语言 时间:
2014-11-02 09:26:10
阅读次数:
266