分分钟修改Android keystore

之前写过一篇博客[Android开发必备技能——修改debug签名](/blog/2016-05-04/),感觉对不习惯使用Linux命令的小伙伴而言,简直是噩梦。因此奉上简单实用的Java代码。

关于命令

这里关于keystore主要使用四个命令:

  1. 显示签名文件信息
  2. 修改签名文件密码
  3. 修改别名
  4. 修改别名密码

在Java中表示如下:

1
2
3
4
private final String SHOW_COMMAND = "keytool -list -v -keystore %s -storepass %s";// 显示签名文件信息摘要
private final String STOREPASSWD_COMMAND = "keytool -storepasswd -keystore %s -storepass %s -new %s";// 修改签名文件密码
private final String CHANGEALIAS_COMMAND = "keytool -changealias -keystore %s -alias %s -destalias %s -storepass %s -keypass %s";// 修改别名
private final String KEYPASSWD_COMMAND = "keytool -keypasswd -keystore %s -storepass %s -alias %s -keypass %s -new %s";// 修改别名密码

%s是占位符,在后续的操作中,一次输入争取的信息,如:keystore 路径、keystore 密码、keystore 别名、keystore 别名密码。

关于操作

提供alert方法,修改成默认的签名文件(eclipse能够识别),和修改成指定的签名文件。

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
/**
* 修改生成默认签名文件
*
* @author flueky flueky@sina.com
* @date 2016年5月8日 下午10:34:03
*/
public void alert() {
alert("android", "androiddebugkey", "android");
}

/**
* 修改生成指定签名文件
*
* @author flueky flueky@sina.com
* @date 2016年5月15日 下午6:13:14
* @param newStorePass
* @param newAlias
* @param newKeypass
*/
public void alert(String newStorePass, String newAlias, String newKeypass) {
try {
createTempKeystore();
changeStorepass(storepass, newStorePass);
changeAlias(keyAlias, newAlias, newStorePass, keypasswd);
changeKeypass(newStorePass, newAlias, keypasswd, newKeypass);
restoreKeystore();
} catch (Exception e) {
System.out.println(e.toString());
// 修改失败,还原
removeTempKeystore();
}
}

捕获执行时错误异常

Process提供错误输入流实例,通过判断错误输入流实例中有没有数据进而判断执行命令时,有没有发生错误。例如在这里,输入错误的keypass 就会导致第三步命令执行失败。

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
/**
* 判断Process执行时,是否发生异常
*
* @author flueky flueky@sina.com
* @date 2016年5月15日 下午9:59:36
* @param process
* @return
*/
private boolean checkProcessError(Process process) {
try {
InputStream errorStream = process.getErrorStream();
if (errorStream != null) {//判断是否有错误输入流
BufferedReader br = new BufferedReader(new InputStreamReader(errorStream));
String buffer = br.readLine();
br.close();
errorStream.close();
if (buffer != null && !buffer.equals("")) {//判断错误输入流中是否有数据
return false;
}
return true;
}
return true;
} catch (IOException e) {
e.printStackTrace();
}
return false;
}

完整代码

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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
package com.flueky.execute;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;

public class Keystore {

private String keystorePath;// 签名文件路径
private final String tempPath = "temp.keystore";
private String storepass;// 签名文件密码
private String keyAlias;// 签名文件别名
private String keypasswd;// 别名对应的密码

private final String SHOW_COMMAND = "keytool -list -v -keystore %s -storepass %s";// 显示签名文件信息摘要
private final String STOREPASSWD_COMMAND = "keytool -storepasswd -keystore %s -storepass %s -new %s";// 修改签名文件密码
private final String CHANGEALIAS_COMMAND = "keytool -changealias -keystore %s -alias %s -destalias %s -storepass %s -keypass %s";// 修改别名
private final String KEYPASSWD_COMMAND = "keytool -keypasswd -keystore %s -storepass %s -alias %s -keypass %s -new %s";// 修改别名密码

public Keystore(String keystorePath, String storepass, String keyAlias, String keypasswd) {
super();
this.keystorePath = keystorePath;
this.storepass = storepass;
this.keyAlias = keyAlias;
this.keypasswd = keypasswd;
}

/**
* 修改生成默认签名文件
*
* @author flueky flueky@sina.com
* @date 2016年5月8日 下午10:34:03
*/
public void alert() {
alert("android", "androiddebugkey", "android");
}

/**
* 修改生成指定签名文件
*
* @author flueky flueky@sina.com
* @date 2016年5月15日 下午6:13:14
* @param newStorePass
* @param newAlias
* @param newKeypass
*/
public void alert(String newStorePass, String newAlias, String newKeypass) {
try {
createTempKeystore();
changeStorepass(storepass, newStorePass);
changeAlias(keyAlias, newAlias, newStorePass, keypasswd);
changeKeypass(newStorePass, newAlias, keypasswd, newKeypass);
restoreKeystore();
} catch (Exception e) {
System.out.println(e.toString());
// 修改失败,还原
removeTempKeystore();
}
}

/**
* 创建缓存keystore
*
* @author flueky flueky@sina.com
* @date 2016年5月15日 下午9:13:27
*/
private void createTempKeystore() {
try {
File temp = new File(tempPath);

if (temp.exists())
temp.createNewFile();
File inKeystore = new File(keystorePath);

FileOutputStream tempOutput = new FileOutputStream(temp);
FileInputStream inputStream = new FileInputStream(inKeystore);
int length = 0;
byte[] buffer = new byte[1024];
while ((length = inputStream.read(buffer)) > 0) {
tempOutput.write(buffer, 0, length);
}
inputStream.close();
tempOutput.close();

} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

/**
* 删除缓存keystore
*
* @author flueky flueky@sina.com
* @date 2016年5月15日 下午9:14:24
*/
private void removeTempKeystore() {
File temp = new File(tempPath);
if (temp.exists())
temp.delete();

}

/**
* 重置keystore,在修改失败时创建
*
* @author flueky flueky@sina.com
* @date 2016年5月15日 下午9:14:40
*/
private void restoreKeystore() {
try {
File temp = new File(tempPath);
File outKeystore = new File(keystorePath);
if (outKeystore.exists()) {
outKeystore.delete();
}
outKeystore.createNewFile();

FileInputStream tempInput = new FileInputStream(temp);
FileOutputStream outputStream = new FileOutputStream(outKeystore);
int length = 0;
byte[] buffer = new byte[1024];
while ((length = tempInput.read(buffer)) > 0) {
outputStream.write(buffer, 0, length);
}
outputStream.close();
tempInput.close();

} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

}

/**
* 判断Process执行时,是否发生异常
*
* @author flueky flueky@sina.com
* @date 2016年5月15日 下午9:59:36
* @param process
* @return
*/
private boolean checkProcessError(Process process) {
try {
InputStream errorStream = process.getErrorStream();
if (errorStream != null) {//判断是否有错误输入流
BufferedReader br = new BufferedReader(new InputStreamReader(errorStream));
String buffer = br.readLine();
br.close();
errorStream.close();
if (buffer != null && !buffer.equals("")) {//判断错误输入流中是否有数据
return false;
}
return true;
}
return true;
} catch (IOException e) {
e.printStackTrace();
}
return false;
}

/**
* 显示证书信息
*
* @author flueky flueky@sina.com
* @date 2016年5月15日 下午6:04:03
* @param storepass
*/
public void show(String storepass) {
try {
Process process = Runtime.getRuntime().exec(String.format(SHOW_COMMAND, keystorePath, storepass));
InputStream inStream = process.getInputStream();
BufferedReader reader = new BufferedReader(new InputStreamReader(inStream));
String line = "";
while ((line = reader.readLine()) != null) {
System.out.println(line);
}
inStream.close();

} catch (IOException e) {
e.printStackTrace();
}
}

/**
* 修改证书密码
*
* @author flueky flueky@sina.com
* @date 2016年5月15日 下午5:50:28
* @param oldStorePass
* @param newStorePass
* @throws IOException
*/
public void changeStorepass(String oldStorePass, String newStorePass) throws Exception {
Process process = Runtime.getRuntime()
.exec(String.format(STOREPASSWD_COMMAND, tempPath, oldStorePass, newStorePass));
if (!checkProcessError(process))
throw new Exception("修改密码失败");

InputStream inStream = process.getInputStream();
BufferedReader reader = new BufferedReader(new InputStreamReader(inStream));
String line = "";
while ((line = reader.readLine()) != null) {
System.out.println(line);
// saveToFile(line, "runlog.log", false);
}
inStream.close();
}

/**
* 修改证书别名
*
* @author flueky flueky@sina.com
* @date 2016年5月15日 下午5:50:51
* @param oldStorePass
* @param newStorePass
*/
public void changeAlias(String oldAlias, String newAlias, String storepass, String keypass) throws Exception {
Process process = Runtime.getRuntime()
.exec(String.format(CHANGEALIAS_COMMAND, tempPath, oldAlias, newAlias, storepass, keypass));
if (!checkProcessError(process))
throw new Exception("修改密码失败");
InputStream inStream = process.getInputStream();
BufferedReader reader = new BufferedReader(new InputStreamReader(inStream));
String line = "";
while ((line = reader.readLine()) != null) {
System.out.println(line);
// saveToFile(line, "runlog.log", false);
}
inStream.close();

}

/**
* 修改别名密码
*
* @author flueky flueky@sina.com
* @date 2016年5月15日 下午5:59:41
* @param storepass
* @param alias
* @param oldKeypass
* @param newKeypass
*/
public void changeKeypass(String storepass, String alias, String oldKeypass, String newKeypass) throws Exception {
Process process = Runtime.getRuntime()
.exec(String.format(KEYPASSWD_COMMAND, tempPath, storepass, alias, oldKeypass, newKeypass));
if (!checkProcessError(process))
throw new Exception("修改密码失败");
InputStream inStream = process.getInputStream();
BufferedReader reader = new BufferedReader(new InputStreamReader(inStream));
String line = "";
while ((line = reader.readLine()) != null) {
System.out.println(line);
}
inStream.close();
}

}

Author: flueky
Link: http://example.com/219s/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.