Ask Your Question

PatHooper's profile - activity

2019-01-08 15:05:03 +0200 received badge  Nice Answer (source)
2019-01-08 15:00:22 +0200 received badge  Teacher (source)
2019-01-08 14:56:01 +0200 received badge  Editor (source)
2019-01-08 14:55:10 +0200 answered a question Calling Sage from Java

Hello CupOfCoffee,

First some caveats: I don't use windows and I've never tried to connect sage to java.

I think you should be able to run programs in Java with ProcessBuilder (https://docs.oracle.com/javase/6/docs...). I expect you'd need to pass some parameters to sage to get it working correctly. Here are some relevant links:

Then I would think you would want to pass and read commands to Sage through input/output to the process. There is a StackOverflow question addressing this here: https://stackoverflow.com/questions/1...

I imagine if you want to just do what you are suggesting, this wouldn't be too bad, but if you want to do something more complex, dealing with the input/output could be a pain.

Best, Pat

PS. Sorry for mangling the links. The post wouldn't go through without it.