Execute script and wait for it to complete

Co-authored-by: sigonasr2 <sigonasr2@gmail.com>
main
sigonasr2, Sig, Sigo 2 years ago
parent 0fe143df7f
commit 30b8a69c94
  1. 3
      ArcadeReader.java

@ -97,7 +97,8 @@ abstract class Reader{
List<Box> readRegions = new ArrayList<>();
String readAllBoxes() {
try {
Process p = Runtime.getRuntime().exec("cat testBoxes.txt");
Process p = Runtime.getRuntime().exec(new String[]{"python3","runocr.py","ja"});
while (p.isAlive());
InputStreamReader result = new InputStreamReader(p.getInputStream());
StringBuilder sb = new StringBuilder();
while (result.ready()) {

Loading…
Cancel
Save