您好,欢迎光临本网站![请登录][注册会员]  
文件名称: andbatdog电池监控
  所属分类: Android
  开发工具:
  文件大小: 94kb
  下载次数: 0
  上传时间: 2013-09-05
  提 供 者: u0119*****
 详细说明: andbatdog电池监控/******************************************************************************* * Copyright (c) 2009 Ferenc Hechler - ferenc_hechler@users.sourceforge.net * * This file is part of the Android Battery Dog * * The Android Battery Dog is free software; * you can redistribute it and/or modify it under the terms of the GNU * General Public License as published by the Free Software Foundation; * either version 2 of the License, or (at your option) any later version. * * The Android Battery Dog is distributed * in the hope that it will be useful, but WITHOUT ANY WARRANTY; without * even the implied warranty of MERCHANTABILITY or FITNESS FOR A * PARTICULAR PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with the Android Battery Dog; * if not, write to the Free Software Foundation, Inc., * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * *******************************************************************************/ package net.sf.andbatdog.batterydog; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.text.DecimalFormat; import java.text.SimpleDateFormat; import java.util.Date; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.os.Environment; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.EditText; import android.widget.Toast; public class BatteryDog extends Activity { private static final int OUTPUT_LINES = 100; private static final int LINE_LENGTH = 50; private static final String TAG = "BATDOG"; private Button btStart; private Button btStop; private Button btRawFormat; private Button btShowFormated; private Button btGraph; private EditText mOutput; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.battery_dog); mOutput= (EditText) findViewById(R.id.output); // find buttons in view btStart = ((Button) findViewById(R.id.btStart)); btStop = ((Button) findViewById(R.id.btStop)); btRawFormat= ((Button) findViewById(R.id.btRawFormat)); btShowFormated= ((Button) findViewById(R.id.btShowFormated)); btGraph = ((Button) findViewById(R.id.btGraph)); // set actions for buttons btStart.setOnClickListener(StartServiceListener); btStop.setOnClickListener(StopServiceListener); btRawFormat.setOnClickListener(RawFormatListener); btShowFormated.setOnClickListener(ShowFormatedListener); btGraph.setOnClickListener(GraphListener); } OnClickListener StartServiceListener = new OnClickListener() { public void onClick(View v) { try { startService(new Intent(BatteryDog.this, BatteryDog_Service.class)); } catch (Exception e) { Log.e(TAG, e.getMessage(), e); Toast.makeText(BatteryDog.this, "Start Service failed: "+e.getMessage(), Toast.LENGTH_SHORT).show(); } } }; OnClickListener StopServiceListener = new OnClickListener() { public void onClick(View v) { try { stopService(new Intent(BatteryDog.this, BatteryDog_Service.class)); } catch (Exception e) { Log.e(TAG, e.getMessage(), e); Toast.makeText(BatteryDog.this, "Stop Service failed: "+e.getMessage(), Toast.LENGTH_SHORT).show(); } } }; OnClickListener RawFormatListener = new OnClickListener() { public void onClick(View v) { updateLog(false); } }; OnClickListener ShowFormatedListener = new OnClickListener() { public void onClick(View v) { updateLog(true); } }; OnClickListener GraphListener = new OnClickListener() { public void onClick(View v) { startActivity(new Intent(BatteryDog.this, BatteryGraph.class)); } }; private void updateLog(boolean doFormat) { try { File root = Environment.getExternalStorageDirectory(); if (root == null) throw new Exception("external storage dir not found"); File batteryLogFile = new File(root,BatteryDog_Service.LOGFILEPATH); if (!batteryLogFile.exists()) throw new Exception("logfile '"+batteryLogFile+"' not found"); if (!batteryLogFile.canRead()) throw new Exception("logfile '"+batteryLogFile+"' not readable"); long len = batteryLogFile.length(); int size = (int)Math.min((long)OUTPUT_LINES*LINE_LENGTH, len); StringBuffer text = new StringBuffer(size); FileReader reader = new FileReader(batteryLogFile); BufferedReader in = new BufferedReader(reader); if (doFormat) { text.append(in.readLine()).append("\n"); } if (len > OUTPUT_LINES*LINE_LENGTH) { in.skip(len-OUTPUT_LINES*LINE_LENGTH); // skip incomplete line in.readLine(); } String line = in.readLine(); while (line != null) { if (doFormat) { line = parseLine(line); } if (line != null) text.append(line).append("\n"); line = in.readLine(); } in.close(); mOutput.setText(text.toString()); } catch (Exception e) { Log.e(TAG,e.getMessage(),e); mOutput.setText(e.getMessage()); } } private SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss"); private DecimalFormat dfT = new DecimalFormat("###.#"); private DecimalFormat dfV = new DecimalFormat("##.###"); private String parseLine(String line) { if (line == null) return line; String[] split = line.split("[;]"); if (split.length < 6) return line; if (split[0].equals("Nr")) return line; try { int count = Integer.parseInt(split[0]); long time = Long.parseLong(split[1]); int level = Integer.parseInt(split[2]); int scale = Integer.parseInt(split[3]); int percent = level*100/scale; int voltage = Integer.parseInt(split[4]); int temperature = Integer.parseInt(split[5]); double v = 0.001*voltage; double t = 0.1*temperature; String timestamp = sdf.format(new Date(time)); StringBuffer result = new StringBuffer(); result.append(Integer.toString(count)).append(". ") .append(timestamp).append(" ") .append(percent).append("% ") .append(dfV.format(v)).append("V ") .append(dfT.format(t)).append("?") ; // for (int i = 6; i < split.length; i++) { // result.append(" ").append(split[i]); // } return result.toString(); } catch (Exception e) { Log.e(TAG, e.getMessage(), e); return line; } } } ...展开收缩
(系统自动生成,下载前可以参看下载内容)

下载文件列表

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度
  • 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.
 相关搜索: android andbat dog 电池监控
 输入关键字,在本站1000多万海量源码库中尽情搜索: