报错截图如下: 错误信息是由于jar包版本不一致导致,这个49.0是什么呢?JDK不同的版本,编译出的class文件是不同的。通过查看分析class文件前几个字节,可以找到对应的关系,详细的参考官方,细微的版本之间可能有差异:J2SE 7 = 51 (0x33 hex),J2SE 6.0 = 50....
分类:
编程语言 时间:
2015-04-29 13:20:03
阅读次数:
135
版本控制比较普遍的 3 种命名格式 :一、GNU 风格的版本号命名格式 : 主版本号 . 子版本号 [. 修正版本号 [. 编译版本号 ]]Major_Version_Number.Minor_Version_Number[.Revision_Number[.Build_Number]]示例 : 1...
分类:
其他好文 时间:
2015-04-28 08:14:53
阅读次数:
166
Simplied a DFS\BFS with minor modification.#include #include #include #include #include #include using namespace std;typedef vector> Matrix;typedef pa...
分类:
其他好文 时间:
2015-04-27 14:51:51
阅读次数:
106
MAJOR宏将dev_t向右移动20位,得到主设备号;MINOR宏将dev_t的高12位清零,得到次设备号。相反,可以将主设备号和次设备号转换为设备号类型(dev_t),使用宏MKDEV可以完成这个功能。
Linux内核允许多个驱动共享一个主设备号,但更多的设备都遵循一个驱动对一个主设备号的原则。
内核维护着一个以主设备号为key的全局哈希表,而哈希表中数据部分则为与该主设备号设备对应的驱动程序(只有一个次设备)的指针或者多个同类设备驱动程序组成的数组的指针(设备共享主设备号)。根据所编写的驱动程序...
分类:
其他好文 时间:
2015-04-27 11:26:35
阅读次数:
153
FYSHOP OPENCART 主题模板 ABC-0430 FyShop - opencart 1.5.x template The demo is on 1.5.1.x , the 1.5.2.x to 1.5.6.x versions are the same, but with few minor modifications - cool and modern design; ...
分类:
其他好文 时间:
2015-04-25 21:21:35
阅读次数:
137
Caused by: java.lang.UnsupportedClassVersionError: com/sumingk/platform/service/impl/ServiceSysPersonImpl : Unsupported major.minor version 51.0 (unab...
分类:
编程语言 时间:
2015-04-23 01:46:59
阅读次数:
126
程序包:源代码:tgr.gz,tar.bz2,tar.xz包管理器:rpm格式appname-version-release-ARCH.rpm常见的包管理器:1,.deb:debian.rpm:redhatPackageManagerrpm包命名格式:appname-version-release-ARCH.rpmversion:major:主版本号minor:次版本号release:发行号release:包自己的修..
分类:
其他好文 时间:
2015-04-15 23:34:41
阅读次数:
410
[html]view plaincopy${title}ToviewthispageensurethatAdobeFlashPlayerversion${version_major}.${version_minor}.${version_revision}orgreaterisinstalled.f...
分类:
其他好文 时间:
2015-04-13 16:17:44
阅读次数:
162
cannot be cast to javax.servlet.Filter添加provided即可 install -X是什么意思? Unsupported major.minor version 51.0 属性-》Java-》Compiler-》1.6 后来发现是因为:引用的jar包是1.7平台...
分类:
编程语言 时间:
2015-04-13 14:11:58
阅读次数:
163
rpm的使用方法rpm包命名格式:appname-VERSION-RELEASE.ARCH.rpmVERSION:major:主版本号minor:次版本号release:修订号比如bash-4.3.2-2.centos6.x86_64.rpm中bash是包名,4.3.2是版本号;-2.centos6是修订号;x86_64是适用平台rpm常用命令安装:rpm-iPACKAGE_FILE-h以#来表示进..
分类:
其他好文 时间:
2015-04-13 07:08:21
阅读次数:
165