android log

来源:互联网 发布:顺德经济发展数据 编辑:程序博客网 时间:2024/05/18 00:46
package com.example.random_test;import java.io.File;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.IOException;import java.util.Properties;public class MyLog {public static void myLog(Object o, String label){String s = System.identityHashCode(o) + "";//String s2 = String.valueOf(label);try {String path = "/mnt/sdcard/seed";File f = new File(path);if(!f.exists()){f.mkdir();}FileOutputStream out = new FileOutputStream(path+"/hashcode.txt");       Properties p = new Properties();p.put(label, s);p.store(out, "");} catch (FileNotFoundException e) {// TODO Auto-generated catch blocke.printStackTrace();} catch (IOException e) {// TODO Auto-generated catch blocke.printStackTrace();}}public static void myLog2(String s, String label){//String s2 = String.valueOf(label);try {String path = "/mnt/sdcard/seed";File f = new File(path);if(!f.exists()){f.mkdir();}FileOutputStream out = new FileOutputStream(path+"/key.txt");       Properties p = new Properties();p.put(label, s);p.store(out, "");} catch (FileNotFoundException e) {// TODO Auto-generated catch blocke.printStackTrace();} catch (IOException e) {// TODO Auto-generated catch blocke.printStackTrace();}}}

a=0;// a=0;//     #==========================add by hecl 2014-03-28===========================a=0;//     const-string v5, "AES-key:"a=0;//     invoke-static {v0, v5}, Lmydefaultpackage/MyLog;->myLog2(Ljava/lang/String;Ljava/lang/String;)Va=0;//     #===========================================================================a=0;// 

用途我就不说了啊 
0 0
原创粉丝点击