分类 技术 下的文章

Google地图经纬度纠偏:通常在项目中,GPS经纬度不会直接使用,需要进行一些经纬度的纠偏才可以在对应的地图上使用。/** * gps纠偏算法,适用于google,高德体系的地图 * @author Administrator */ public class GpsCorrect { final static double pi = 3.14159265358979324; final static double a = 6378245.0; final static double ee = 0.0066934216229659432...

阅读全部

CSS3实现旋转,下面是CSS3实现 图片img、块元素div、字体font 等旋转特效的代码:.spinner{ -webkit-animation:spinner 2s infinite linear; animation: spinner 2s infinite linear; } @-webkit-keyframes spinner{ 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(359...

阅读全部

Linux系统没有自带的压缩解压工具;需要我们自己安装;当用到zip或者unzip如果没有安装就会出现unzip: Command Not Found 或 zip: Command Not Found;出现这个是因为没有安装unzip和zip。1、yum安装:[root@WCUfJM105714 /]# yum install -y unzip zip2、apt-get安装:[root@WCUfJM105714 /]# apt-get install zip以上是两种安装unzip/zip的方式。下面是一些具体的实例操作命令演示:1、把/home目录下面的mydata目录压缩为mydat...

阅读全部

以前的一个老项目中的一个模块近期在拆分成为一个独立项目时,出现了java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener 的问题。项目配置个人感觉没有什么问题。严重: Error configuring application listener of class org.springframework.web.context.ContextLoaderListener java.lang.ClassNotFoundException: org.springframewo...

阅读全部

在使用redis-cli停止Redis服务时,出现如下错误信息:[root@WCUfJM105714 bin]# redis-cli shutdown (error) NOAUTH Authentication required.检测6379端口后,看到端口还在监听[root@WCUfJM105714 bin]# netstat -lntp |grep 6379 tcp        0      0 127.0.0.1:6379          0.0.0.0:*               LISTEN      14505/./redis-serve解决办法:在redis-c...

阅读全部

Windows 系统安装Tomcat,比较便捷的是setup程序去安装设置。做为习惯于直接下载ZIP包的人来说,就需要简单的设置一下咯。首先,去tomcat官方网站下载tomcat。地址:http://tomcat.apache.org/download-60.cgi32位:http://apache.fayea.com/tomcat/tomcat-6/v6.0.53/bin/apache-tomcat-6.0.53-windows-x86.zip64位:http://apache.fayea.com/tomcat/tomcat-6/v6.0.53/bin/apache-tomcat-6...

阅读全部

亲测完全OK可用。Navicat for Oracle 下载:https://www.navicat.com.cn/download然后还需要Oracle 的二个文件 地址为 http://www.oracle.com/technetwork/topics/winsoft-085727.htmlinstantclient-basic-nt-12.1.0.2.0.zipinstantclient-sqlplus-nt-12.1.0.2.0.zip这里我百度云有 链接: http://pan.baidu.com/s/1bpH2TTd 密码: f31q这里我直接把 instantclient-...

阅读全部