Blame view

src/com/eztlib/blu/ClsUtils.java 3.14 KB
3c2353cd   杜方   1、畅游通核销app源码提交;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
  package com.eztlib.blu;
  
  import java.lang.reflect.Field;
  import java.lang.reflect.Method;
  
  import android.bluetooth.BluetoothDevice;
  import android.util.Log;
  
  public class ClsUtils {
  	/**
  	 * 与设备配对 参考源码:platform/packages/apps/Settings.git
  	 * /Settings/src/com/android/settings/bluetooth/CachedBluetoothDevice.java
  	 */
  	static public boolean createBond(Class btClass, BluetoothDevice btDevice)
  			throws Exception {
  		Method createBondMethod = btClass.getMethod("createBond");
  		Boolean returnValue = (Boolean) createBondMethod.invoke(btDevice);
  		return returnValue.booleanValue();
  	}
  
  	/**6217007200023456638
  	 * 与设备解除配对 参考源码:platform/packages/apps/Settings.git
  	 * /Settings/src/com/android/settings/bluetooth/CachedBluetoothDevice.java
  	 */
  	static public boolean removeBond(Class btClass, BluetoothDevice btDevice)
  			throws Exception {
  		Method removeBondMethod = btClass.getMethod("removeBond");
  		Boolean returnValue = (Boolean) removeBondMethod.invoke(btDevice);
  		return returnValue.booleanValue();
  	}
  
  	static public boolean setPin(Class btClass, BluetoothDevice btDevice,
  								 String str) throws Exception {
  		try {
  			Method removeBondMethod = btClass.getDeclaredMethod("setPin",
  					new Class[] { byte[].class });
  			Boolean returnValue = (Boolean) removeBondMethod.invoke(btDevice,
  					new Object[] { str.getBytes() });
  			Log.e("returnValue", "" + returnValue);
  		} catch (SecurityException e) {
  			// throw new RuntimeException(e.getMessage());
  			e.printStackTrace();
  		} catch (IllegalArgumentException e) {
  			// throw new RuntimeException(e.getMessage());
  			e.printStackTrace();
  		} catch (Exception e) {
  			// TODO Auto-generated catch block
  			e.printStackTrace();
  		}
  		return true;
  
  	}
  
  	// 取消用户输入
  	static public boolean cancelPairingUserInput(Class btClass,
  												 BluetoothDevice device)
  
  			throws Exception {
  		Method createBondMethod = btClass.getMethod("cancelPairingUserInput");
  		// cancelBondProcess()
  		Boolean returnValue = (Boolean) createBondMethod.invoke(device);
  		return returnValue.booleanValue();
  	}
  
  	// 取消配对
  	static public boolean cancelBondProcess(Class btClass,
  											BluetoothDevice device)
  
  			throws Exception {
  		Method createBondMethod = btClass.getMethod("cancelBondProcess");
  		Boolean returnValue = (Boolean) createBondMethod.invoke(device);
  		return returnValue.booleanValue();
  	}
  
  	/**
  	 *
  	 * @param clsShow
  	 */
  	static public void printAllInform(Class clsShow) {
  		try {
  			// 取得所有方法
  			Method[] hideMethod = clsShow.getMethods();
  			int i = 0;
  			for (; i < hideMethod.length; i++) {
  				Log.e("method name", hideMethod[i].getName() + ";and the i is:"
  						+ i);
  			}
  			// 取得所有常量
  			Field[] allFields = clsShow.getFields();
  			for (i = 0; i < allFields.length; i++) {
  				Log.e("Field name", allFields[i].getName());
  			}
  		} catch (SecurityException e) {
  			// throw new RuntimeException(e.getMessage());
  			e.printStackTrace();
  		} catch (IllegalArgumentException e) {
  			// throw new RuntimeException(e.getMessage());
  			e.printStackTrace();
  		} catch (Exception e) {
  			// TODO Auto-generated catch block
  			e.printStackTrace();
  		}
  	}
  }