- 浏览: 184889 次
- 性别:
- 来自: 成都
最新评论
-
donggongai:
Blackbaby 写道mazhi4562qq 写道moist ...
openfire集成现有系统的用户表 -
Blackbaby:
mazhi4562qq 写道moistrot 写道哥们,你集成 ...
openfire集成现有系统的用户表 -
mazhi4562qq:
moistrot 写道哥们,你集成成功了吗?我这样集成之后,登 ...
openfire集成现有系统的用户表 -
dxcsingle:
哥们 我如今也遇到这个问题 能讲哈怎么处理么?
openfire集成现有系统的用户表 -
hooktoo:
该例子有很严重的问题,java没释放内存
JNative dll回调函数使用实例
文章列表
直接上例子吧,本来想用html布局生成pdf的,没成功。。。
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
xmlns:groe_org="o ...
遵循Netscape cookie草案的完整的Set-Cookie 头:
Set-Cookie:customer=huangxp; path=/foo; domain=.ibm.com;
expires= Wednesday, 19-OCT-05 23:12:40 GMT; [secure]
Set-Cookie的每个属性解释如下:
Customer=huangxp 一个"名称=值"对,把名称customer设置为值"huangxp",这个属性在Cookie中必须有。
path=/foo 控制哪些访问能够 ...
1. 读取从swf传进来的参数
var first_name : String = FlexGlobals.topLevelApplication.parameters.firstname;
2. FXG使用fill对图形本体进行上色,使用stroke对图形边框进行上色,而fill(填充)和stroke(画笔)有三种上色方法: fill — SolidColor(色块),RadialGradient(径向渐变),LinearGradient(线性渐变)。 stroke — SolidColorStroke(实线),RadialGradientStroke(径向 ...
I’ve been refining my custom Flex component development for a while but I still smile when I come across someone’s definition of the basics that makes what I’ve already learned even more understandable. I came across Mike Nimer’s post about slides from the Flex Camp in Chicago and after reading throu ...
The lifecycle of component in flex is certainly somewhat similar to the old V2 framework where you create a component holder, craetechildren, set-sizes and dispatch events. Following four methods plays a role for component rendering
commitProperties()
measure()
layoutChrome()
updateDisplayList() ...
select * from table LIMIT 5,10; #返回第6-15行数据
select * from table LIMIT 5; #返回前5行
select * from table LIMIT 0,5; #返回前5行
性能优化:基于MySQL5.0中limit的高性能,我对数据分页也重新有了新的认识.
1.
Select * From cyclopedia Where ID>=(
Selec ...
1.将mysql的JDBC驱动放到的JBOSS_HOME\server\default\lib 下
2.把JBOSS_HOME\docs\examples\jca\mysql-ds.xml 复制到JBOSS_HOME\server\default\deploy目录下,修改mysql-ds.xml文件
<jndi-name>MySqlDS</jndi-name>
<use-java-context>false</use-java-context>
<connection-url>jdbc:mysql://localhost: ...
http://dmitrysoshnikov.com/ecmascript/chapter-1-execution-contexts/ ecma262
http://www.stubbornella.org/content/2009/03/27/reflows-repaints-css-performance-making-your-javascript-slow/ Reflow和Repaint
http://dev.opera.com/articles/view/efficient-javascript/
http://dean.edwards.na ...
/*
* (c)2006 Jesse Skinner/Dean Edwards/Matthias Miller/John Resig
* Special thanks to Dan Webb's domready.js Prototype extension
* and Simon Willison's addLoadEvent
*
* For more info, see:
* http://www.thefutureoftheweb.com/blog/adddomloadevent
* http://dean.edwards.name/weblog/2006 ...
NoSQL
是非关系型数据存储的广义定义。它打破了长久以来关系型数据库与 ACID
理论大一统的局面。NoSQL 数据存储不需要固定的表结构,通常也不存在连接
操作。在大数据存取上具备关系型数据库无法比拟的性能优势。该术语在 2009 年初得到了广泛认同。
当今的应用体系结构需要数据存储在横向伸缩性
上能够满足需求。而 NoSQL 存储就是为了实现这个需求。Google 的 BigTable
与 Amazon
的 Dynamo
是非常成功的商业 NoSQL 实现。一些开源的 NoSQL 体系,如Facebook 的 Cassandra
, ...
从 http://subclipse.tigris.org/update_1.6.x/
安装好svn插件后,在导入svn项目时就会造成eclipse崩溃。我的环境是eclipse 3.5,网上说是把subclipse的接口改为纯java就OK了,可是试了不行,后来网上找到说是装了Subversion命令行造成,于是卸载掉Subversion果然OK。。。
http://www.blogjava.net/Jack2007/archive/2008/04/10/191795.html
var GET = {};
var loc = String(document.location);
var pieces = loc.substr(loc.indexOf('?') + 1).split('&');
for (var i = 0; i < pieces.length; i++){
var keyVal = pieces[i].split('=');
GET[keyVal[0]] = decodeURIComponent(keyVal[1]);
}
用法:http://blackbaby.iteye.com/admin/ ...
如果你用过
Openfire的User Import
Export插件就会发现,在导入或者导出用户的数据的时候,密码都是明文,而且导入的用户,如果还没有登录过,密码都是明文存储在
plainPassword字段的。登录过一次之后,plainPassword字段的密码被清空了,只留下了加密的密码。
利用这个特性,我们可
以把encryptedPassword字段设置成NULL,然后给plainPassword字段重新设置明文密码。
UPDATE ofUser SET plainPassword='test123', encryptedPassword=NULL ...
get传输会自动将+和&转换成空格,这个问题可能大家都晓得可有时不太注意,今天在做传输base64值时又一次发现这个问题。。。当然有post方式最好了。
1. + URL中的+号表示空格 %2B
2. 空
格 URL中的空格,也可以用直接用+号表示 %20
3. / 分隔目录和子目
录 %2F
4. ?
...