コマンドの使用に問題がありadb push
ます。ループ内にプッシュすると、最初の反復では実行されず、残りはそれ自体です。
何か案が?
public void export_APK(String dir, String nom_fich, String dir_padre) throws IOException, InterruptedException{
Process p6;
Runtime.getRuntime().exec("cmd /c adb wait-for-device");
Runtime.getRuntime().exec("cmd /c adb install -r " + dir);
Runtime.getRuntime().exec("adb shell rm -r /sdcard/Alumno");
Runtime.getRuntime().exec("adb shell mount /sdcard");
Runtime.getRuntime().exec("adb shell mkdir /sdcard/Alumno");
for (Integer i=1;i<6;i++){
p6 = Runtime.getRuntime().exec("adb push c:\image\photo" + i + " /sdcard/Alumno/Actividad"+i);
p6.waitFor();
}
}