Last active
April 14, 2018 15:14
Automatic Screenshots capturing tool for android
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.BufferedReader; | |
import java.io.IOException; | |
import java.io.InputStreamReader; | |
import java.util.Scanner; | |
class Screenshots { | |
public static void main(String args[]) { | |
BufferedReader bufferedReader = null; | |
Scanner scanner=new Scanner(System.in); | |
int pageno=1; | |
try { | |
int n=scanner.nextInt(); | |
while(pageno<n){ | |
System.out.println("Wait..."); | |
// Runtime.getRuntime().exec("adb exec-out screencap -p > " +pageno+".png"); | |
// Runtime.getRuntime().exec("adb shell input swipe 300 700 50 700"); | |
Process p1=new ProcessBuilder(new String[]{"cmd.exe","/c","adb exec-out screencap -p >" +pageno+".png"}).start(); | |
Process p2=new ProcessBuilder(new String[] {"cmd.exe","/c"," adb shell input swipe 300 700 50 700"}).start(); | |
p1.waitFor(); | |
p2.waitFor(); | |
pageno++; | |
} | |
} catch (Exception e) { | |
System.out.println("Error"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment