摘要:
Flume是Cloudera提供的一个高可用的,高可靠的,分布式的海量日志采集、聚合和传输的系统,Flume支持在日志系统中定制各类数据发送方,用于收集数据;同时,Flume提供对数据进行简单处理,并写到各种数据接受方(可定制)的能力。当前Flume有两个版本Flume 0.9X版本的统称Flume... 阅读全文
摘要:
参考地址:http://www.stormzhang.com/android/2014/05/22/android-gson/我的示例代码:public void doGsonTest(View view) { //参考文档 http://www.stormzhang.com/andr... 阅读全文
摘要:
一、环境配置1.把ant加入到系统环境变量方法一:下载ant:http://ant.apache.org/bindownload.cgi方法二:使用eclipse自带的ant:在ecipse安装目录下的/plugin搜索"ant",找到ant目录。把{ant_home}/bin加入系统环境变量pat... 阅读全文
摘要:
button.setVisibility(View.VISIBLE); // 背景透明度渐变动画 ObjectAnimator alpha = ObjectAnimator.ofFloat(button, "alpha", 0, 1); alpha.setDuration(1000); al... 阅读全文