source on github在对Flash Media Server中的视频流使用BitmapData.draw()进行绘制的时候,会抛出这样异常:cannot access rtmp://xxxxx. No policy files granted access. at flash.disp....
分类:
其他好文 时间:
2014-11-27 16:06:57
阅读次数:
190
【报错信息】
针对mysql官方社区版进行测试的时候,执行tpcc_load脚本提示缺少libperconaserverclient.so.18库文件:
time ./tpcc_load 127.0.0.1 tpcc1000 root"" 500
./tpcc_load: error while loading sharedlibraries: libperconaserverclient.so.18: cannot open shared object file: Nosuch file or direc...
分类:
数据库 时间:
2014-11-27 14:35:28
阅读次数:
377
安装SSL库,openssl或者libssl:sudo apt-get install opensslsudo apt-get install libsslconfigure的时辰加上选项:./configure --with-ssl=/usr/bin/openssl --with-ssl-lib=...
分类:
系统相关 时间:
2014-11-27 12:24:51
阅读次数:
197
参考:http://dearseven.blog.163.com/blog/static/1005379222013764440253/linux 下启动tomcat[root@test233 bin]# sh startup.sh Cannot find ./catalina.shThe file...
分类:
系统相关 时间:
2014-11-27 10:22:42
阅读次数:
530
今天调用wcf程序的时候发现证书有问题。报的错误如下 The certificate that was used has a trust chain that cannot be verified. Replace the certificate or change the certificateV...
分类:
其他好文 时间:
2014-11-26 18:28:47
阅读次数:
196
TransactionalEditingDomainImpl editingDomain = (TransactionalEditingDomainImpl) diagramEditor.getEditingDomain(); editingDomain.getCommandStack...
分类:
其他好文 时间:
2014-11-26 16:00:31
阅读次数:
548
网上说2003 -> 11.0,2007 -> 12.0. 因为平时提示"Are you missing an assembly reference?",都是没有引用库文件,但是明明我已经添加好引用了,还是报错.机器上安装的是Office2010,但是在库引用中,v14.0的是不行,Office ....
分类:
移动开发 时间:
2014-11-26 14:04:43
阅读次数:
150
实例变量也被翻译成"域"和"成员变量"。在面向数据库的实体类中叶被称为
"属性"或"字段"的变量。Hibernate中也称为POJO,即简单原始的Java变量。使
用变量的一般原则是:尽量使变量的有效范围最小化,即优先考虑用局部变量。其次是
实例变量,最后才是类变量。
还有一种常量的写法,比类常量前多了一个final,如下:
final static int ALL_CL...
分类:
其他好文 时间:
2014-11-26 11:18:48
阅读次数:
313
Failed to initialize connector [Connector[HTTP/1.1-443]]出现如上错误时,是因为443端口被占用,所以tomcat的https协议无法使用,svn服务器上安装时,默认https端口难道是443吗?若确实是这样,那么需要以后安装svn在服务器上时,...
分类:
Web程序 时间:
2014-11-26 10:52:33
阅读次数:
1029
同列表和字符串一样,字典也有方法。clear清空字典中的所有项。我们可以把空字典赋给某一字典来清空它当中的项。也可以使用clear方法彻底清空字典。x={}
y=x
x[‘age‘]=‘25‘
x[‘gender‘]=‘male‘
printx
x.clear()
printx
printy
{‘gender‘:‘male‘,‘age‘:‘25‘}
{}
{}如果将x.cl..
分类:
编程语言 时间:
2014-11-26 06:54:53
阅读次数:
184