import java.io.*;import weka.classifiers.*;import weka.classifiers.meta.Vote;import weka.core.Instance;import weka.core.Instances;import weka.core.Sel...
分类:
其他好文 时间:
2014-07-09 21:27:32
阅读次数:
277
从 本地 复制到 远程目录拷贝:scp -r local_folderroot@116.90.87.156:remote_folder文件拷贝:scplocal_fileremote_username@remote_ip:remote_folder文件拷贝并命名:scp local_file rem...
分类:
其他好文 时间:
2014-07-09 21:09:07
阅读次数:
181
在ADF的VO中,真实提交更改是在commit 方法执行之后,如以下增加操作EntityDefImpl departmentEODef = DepartmentEOImpl. getDefinitionObject();//Create the entiy instance in the curre...
分类:
其他好文 时间:
2014-07-06 22:40:26
阅读次数:
281
一般写Singleton基本都是一下这个套路class Singleton { public static Singleton instance; private Singleton() { } public static Singleton Getinstance() { if(instat...
分类:
其他好文 时间:
2014-07-06 22:12:20
阅读次数:
172
一导入js库二、默认校验规则(1)required:true 必输字段(2)remote:"check.php"使用ajax方法调用check.php验证输入值(3)email:true 必须输入正确格式的电子邮件(4)url:true 必须输入正确格式的网址(5)date:true 必须输入正确格...
分类:
Web程序 时间:
2014-07-06 14:04:28
阅读次数:
291
本文转载至http://blog.csdn.net/remote_roamer/article/details/7107007 1. @implementation Singleton2.3.+ (Singleton *)instance {4. static Singleton *inst...
分类:
移动开发 时间:
2014-07-06 13:27:26
阅读次数:
208
本文转载至http://blog.csdn.net/remote_roamer/article/details/7105776抛出错误的代码[cpp]view plaincopy//如果返回的报文是错误信息,则抛出错误if([outParamscount]<=0){[NSExceptionraise...
分类:
移动开发 时间:
2014-07-06 13:08:51
阅读次数:
247
疯狂的暑假学习之 汇编入门学习笔记 (四)—— [BX] 和 loop指令
参考:《汇编语言》 王爽 第5章
1.[BX]
mov al,[1]
在debug中,会把bs:1 中数据赋给al,但在在masm中不会把bs:1 中数据赋给al,而是把 [1] 认为是 1 赋给al。
如果要实现在debug中的mov al,[1],在masm中就需要[bx]
如:
mov bx,1
mov al,[bx]
还可以用 bs:[1] 的方式
如:
mov al,bs:[1]
2.loop
循环 要...
分类:
其他好文 时间:
2014-07-06 08:34:09
阅读次数:
234
RMAN高级设置.本章内容:Configuring Advanced Channel Options 高级通道选项Configuring Advanced Backup Options 高级备份选项Configuring Auxiliary Instance Data File Names 配置辅助...
分类:
其他好文 时间:
2014-07-05 22:46:32
阅读次数:
539
问题:客户端无法连接到远程计算机。可能没有启用远程连接或者计算机太忙不能接受新的连接。也可能是网络问题阻止连接。请稍后重新尝试连接。如果问题仍然存在 请与管理员联系。解决方法:1.首先确认远程登陆的服务是打开的,也就是Remote Desktop Services(Windows xp里面是Term...
分类:
其他好文 时间:
2014-07-05 16:46:18
阅读次数:
330