Advertisement
Guest User

Untitled

a guest
Mar 25th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. @FXML
  2. private void game1Button(MouseEvent e) throws IOException {
  3. String gamePath = "java -jar ../Spielesammlung/src/application/Spiele/XvsO/XvsO.jar";
  4. Process cat = Runtime.getRuntime().exec(gamePath);
  5. BufferedInputStream catOutput = new BufferedInputStream(cat.getInputStream());
  6. int read = 0;
  7. byte[] output = new byte[1024];
  8.  
  9. if ((read = catOutput.read(output)) == -1) {
  10.  
  11. }
  12. while ((read = catOutput.read(output)) != -1) {
  13. System.out.print(output[read]);
  14. }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement