Connection test failed. Listener refused the connection with the following error: ORA-12505, TNS:listener does not currently know of SID given in conn...
分类:
Web程序 时间:
2014-06-25 23:48:58
阅读次数:
387
本贴在http://www.cnblogs.com/hanyonglu/archive/2012/03/16/2399655.html下略为改动。Apndroid Push Notification的特点:快速集成:提供一种比C2DM更加快捷的使用方式,避免各种限制. 无需架设服务器:通过使用"云服...
分类:
移动开发 时间:
2014-06-25 22:23:39
阅读次数:
387
对于函数式语言来说,函数也想普通的数据类型一样无处不在。函数即可以当成参数进行传递,也可以当成函数的返回值。当我第一次学习函数式编程的时候,我被这样的写法弄的头昏脑涨。下面我举例说明下(例子摘录自Learn You Some Erlang): 假如你想对一个列表中的所有值都进行加1或减1的操作...
分类:
其他好文 时间:
2014-06-25 21:50:31
阅读次数:
244
appium client扩展了原生的webdriver client方法下面以java代码为例,简单过一下appium client提供的适合移动端使用的新方法resetApp()getAppString()sendKeyEvent()currentActivity()pullFile()push...
分类:
移动开发 时间:
2014-06-25 21:49:51
阅读次数:
513
在官方文档中,看到这句。但不明白什么意思。let vegetable = "red pepper"switch vegetable { case "celery": let vegetableComment = "Add some raisins and make...
分类:
其他好文 时间:
2014-06-24 22:52:30
阅读次数:
400
/*
混合C++、JS、python、Lisp、汇编
1种语言,5种语法
*/
main
{
//C++
vector v;
v.push(2);
putsl(v.size());
if(v.count()==1)
{
putsl("abc");
}
//JS
var a=function(x){
return x*2;
}
putsl(a(3));
a={90...
分类:
编程语言 时间:
2014-06-24 20:39:10
阅读次数:
307
1.在Android开发中调用adb命令进行应用安装,将应用安装到 /system/app目录下
/**
* install the app in use adb command,this style is silent
*
*/
private void adbInstallTheAPP(){
//adb push cor...
分类:
移动开发 时间:
2014-06-24 18:04:18
阅读次数:
291
1、错误描述
严重: ContainerBase.addChild: start:
org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/FoundationDatabase]]
a...
分类:
Web程序 时间:
2014-06-22 12:12:42
阅读次数:
257
Reverse digits of an integer.
Example1: x = 123, return 321
Example2: x = -123, return -321
Have you thought about this?
Here are some good questions to ask before coding. Bonus points for y...
分类:
其他好文 时间:
2014-06-22 09:31:16
阅读次数:
220
Inflate() method can find out a layout defined by xml,as like the findViewById() method,but there have some different between them.
The different are:
If your Activity used other layout,such as...
分类:
移动开发 时间:
2014-06-22 06:41:43
阅读次数:
362