- 浏览: 10743 次
- 性别:
- 来自: 深圳
最新评论
文章列表
服务器端如果使用的Serializable序列号一个类作为消息传递的话;android也必须Serializable;而且.包名,类名必须一致.不然;发出成功,接收失败!
纠结很久...只有包名不同才发现这个问题.
游戏通过移动各种相同颜色的彩球以横、竖、斜排的形式并连成一条线,五个以上便可自行消除,消除彩球越多则得分越高,消除的彩球超过五个,将会得到翻倍分数.如果移动的彩球不能消除,则会往棋盘随机三个彩球,如果棋盘被彩球填满游戏就结束.每轮游戏玩家可以使用一次道具,用于消灭投弹附近的彩球.看看你能玩多少分,参加排名吧!
/**
* 平滑移动滚动条
* 如果是IE就直接跳吧.慢死了.
*/
var phydgdt = function(){
this.w = document.body.scrollWidth; //滚动条的总宽度
this.h = document.body.scrollHeight; //滚动条的总高度
this.x = document.body.scrollLeft; //滚动条横向位置
this.y = document.body.scrollTop; //滚动条纵向位置
this.id = -1;
this.list = [];
this. ...
/**
* Ajax封装
*/
var Ajax = function(){
this.isIE = !+ [ 1, ] ? true : false;
this.xmlHttpList = [];
};
Ajax.prototype = {
ajaxConnection : 0,
getXmlHttp : function( count ){
count = count != undefined ? count : 5;
var bool = this.xmlHttpList.length === 0,i;
var length = bool ...
/**
* 定时任务
* 间隔时间,执行次数,要带的参数,要执行的函数.
*/
var TimingTask = function(time,count,param,fun){
this.id = -1; //编号
this.exectionCount = 0; //执行了多少次
if(typeof time === 'function'){
this.fun = time;
this.time = 3000;
this.count = -1;
}else
if(typeof param === 'function'){
this ...
项目 DD 如下描述:
有一个接口类 A.
有个动态载入指定类 B.
动态载入类 B 是通过传递一个参数classPath='com.xxx.test.aImpl' 来进行动态加载指定类.
DD 发布运行正常.
当将 DD 打包成jar放在 EE 项目下用的时候,出现:
java.io.FileNotFoundException
java.lang.ClassNotFoundException
EE 项目中有 A 接口实现类.调用 B 的动态加载.出现找不到接口 A .
不打包执行正常,打包后就出现错误.
/**
* 自定义的类加载器
*/
public class D ...
邀请码:20110925082236_710588,有效期至2011-09-25 08:22:36。
1. 去http://java.sun.com/j2se/1.4.2/download.html 下载一个Linux Platform的JDK,
建议下载RPM自解压格式的(RPM in self-extracting file,j2sdk-1_4_2_06-linux-i586-rpm.bin);
2. 上载到Linux服务器上,在shell下执行命令:
[root@LinuxServer rpm]# chmod 755 j2sdk-1_4_2_06-linux-i586-rpm.bin
[root@LinuxServer rpm]# ./j2sdk-1_4_2_06-linux-i5 ...