0

コマンドの使用に問題があり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();                
  }                                     
} 
4

1 に答える 1

1

// for ループが間違っています

   for (int i=1;i<6;i++){                              
    Process p6 = Runtime.getRuntime().exec("adb push c:\image\photo" + i + " /sdcard/Alumno/Actividad"+i);            
    p6.waitFor(); 
Log.d("Inside loop","---i==="+i);

      } 
于 2012-05-21T13:17:50.050 に答える