今天在把自己的项目转为maven架构的时候,居然碰到了一个很奇葩的问题具体如下:org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 23 in XML document from class pat....
分类:
编程语言 时间:
2014-12-10 17:55:32
阅读次数:
1240
逻辑指令集有:AND/ORR/EOR/BIC
1)与逻辑指令一般用于置零某位:AND
AND
Logical AND operation.
Syntax
AND{cond}{S} Rd, Rn,
Op2
Description
Load Rd with logical AND of Rn with Op2. Rd := Rn AND Op...
分类:
其他好文 时间:
2014-12-09 23:13:26
阅读次数:
378
ARM指令集:
其中包括数据处理指令集
1)算术指令(ADD,ADC,SUB,SBC , RSB, RSC )
①加法指令:ADD,ADDS
其中带S的表示可以更新标志位
ADD/ADDS
Add values and store result to register.
Syntax
ADD{cond}{S} Rd, Rn,
Op2
Descr...
分类:
其他好文 时间:
2014-12-09 21:38:25
阅读次数:
286
CoomonJS modules provide a clean syntax for importing dependencies. This lesson will take a look at the basics of using CommonJS modules.app.jsvar dep...
分类:
Web程序 时间:
2014-12-09 07:05:40
阅读次数:
230
今天在eclipse中编写pom.xml文件时,注释中的中文被eclipse识别到错误:Invalid byte 1 of 1-byte UTF-8 sequence,曾多次遇到该问题,问题的根源是: The cause of this is a file that is not?UTF-8?is bein...
分类:
其他好文 时间:
2014-12-07 15:12:46
阅读次数:
183
如果编写的判断式不满足strict weak ordering,就会出现Invalid operator< assertion error错误。网页:http://support.microsoft.com/kb/949171VS(其他编译器还没试过)中,sort函数要求比较函数是strict we...
分类:
其他好文 时间:
2014-12-06 20:13:54
阅读次数:
182
在使用Convert.ToBase64String()对字符串进行Base64编码时,注意的几点: 例:string s = "Hello"; byte[] bytes = Convert.FromBase64String(s); 以上代码在运行时会抛出FormatException异常.提示...
分类:
其他好文 时间:
2014-12-06 16:38:00
阅读次数:
158
iOS提交时出现这个错误的解决办法. This bundle is?invalid. Apps that include arm64 architecture cannot have MinimumOSVersion set to less than ‘5.1.1’.More information about 64-bit support for iOS ...
分类:
移动开发 时间:
2014-12-06 15:32:55
阅读次数:
194
今天比较忙,没能好好看新东西,就记录一个常用的CSS3属性吧:box-shadow,表示阴影,如果设置了border-radius圆角,则阴影也是圆角box-shadow目前是IE9及以上和其他现代浏览器都支持的属性了。语法:Formal syntax: none | [inset? && [ .....
分类:
Web程序 时间:
2014-12-05 22:34:19
阅读次数:
189
# -*- coding: utf-8 -*-
import string
import json
import urllib2
import urllib
import base64
import sys
reload(sys)
sys.setdefaultencoding( "utf-8" )
#调用优酷网API获取json数据
def GetYouku():
re...
分类:
编程语言 时间:
2014-12-05 12:52:35
阅读次数:
469