Eclipse
永不停歇的火车
你相信什么,你就会收获什么,譬如爱情。
展开
-
Server Tomcat v7.0 Server at localhost was unable to start within 45 seconds
在部署的时候出现Server Tomcat v6.0 Server at localhost was unable to start within 45 seconds. If the server requires more time, try increasing the timeout in the server editor. 这句话翻译成中文的意思就是:Server Tomcat的v7转载 2013-05-03 14:24:45 · 2601 阅读 · 0 评论 -
根据经纬度查看附件周围信息
public static void main(String args[]){ Double range = 180 / Math.PI * 1 / 6378.137; //1 就代表搜索 1km 之内,单位km Double lngR = range / Math.cos(latitude * Math.PI / 180);转载 2014-05-08 17:03:24 · 699 阅读 · 0 评论 -
根据A、B两点经纬度计算距离
/** * * @param lat1 A点纬度 * @param lat2 B点纬度 * @param lon1 A点经度 * @param lon2 B点经度 * @return 返回距离 单位km */ public static double getDistatce(double lat1, do转载 2014-05-08 16:51:50 · 676 阅读 · 0 评论 -
针对list集合排序
class Student{ }原创 2014-05-08 17:29:25 · 608 阅读 · 0 评论 -
MyEclipse开发Web项目发布到Tomcat下的Root目录
通常情况下,Web项目是发布到Tomcat下的webapps文件目录下的 。以至于我们访问的时候: 例如:Web应用项目名称为:webManager,则部署到tomcat后,是部署在tomcat/webapps/webManager中,网址为:http://localhost:8080/webManager。 然而 ,每当我们访问一个网站页面时,地址栏就是:http://www.12原创 2013-09-13 15:43:05 · 7890 阅读 · 0 评论