- 浏览: 4598 次
- 性别:
- 来自: 广州
最新评论
文章列表
HttpClient client = new DefaultHttpClient();
HttpGet get = new HttpGet("http://gd10010.cn/channels");
System.out.println("test-01");
HttpResponse response = client.execute(get);
String entity = EntityUtils.toString(response.getEntity());
System.out.println("e ...
命令格式:
sqlldr username/password@sid control=*.ctl
*.ctl格式为:
load
infile "d://test.txt" 外部数据文件
infile "d://test1.txt" 可指定多个数据文件
append into table test 向表中追加数据
fields terminated by "," 外部文件的数据以“,”分隔
trailing nullcols 表中的字段没有对应的值时填充空值
(
id integer external, ...
select * from 表名 as of timestamp to_timestamp('2012-8-8','yyyy-mm-dd hh24:mi:ss')
原文链接 http://blog.csdn.net/zmyde2010/archive/2011/01/08/6123987.aspx
Android: 通过Runtime.getRuntime().exec调用底层Linux下的程序或脚本收藏
Android Runtime使得直接调用底层Linux下的可执行程序或脚本成为可能
比如Linux下写个测试工具,直接编译后apk中通过Runtime来调用
或者写个脚本,apk中直接调用,省去中间层或者JNI
这个至少效率应该比较高吧
代码:
view plaincopy to clipboardprint?
public cla ...