ninia / jep

Embed Python in Java
Other
1.27k stars 146 forks source link

Unable to obtain standard output with jep #505

Closed qmj123 closed 6 months ago

qmj123 commented 8 months ago

hi! Unable to obtain standard output through jep in Java. image

ndjensen commented 8 months ago

Try importing sys and call sys.stdout.flush(). Or use JepConfig.setRedirectStdout(System.out) to use Java's System.out PrintStream.

qmj123 commented 8 months ago

Thank you very much for your reply. We have obtained it according to the method you mentioned.