excute .jar file from python

754 Views Asked by At

Im trying to access server data via a jar-file. Doing this in MATLAB is quite simple:

javaaddpath('*PATH*\filename.jar')
WWS=gov.usgs.winston.server.WWSClient(ip,port);
Data = eval('WWS.getRawData(var1,var2,var3)');
WWS.close;

Problem is that I need to execute this in Python and I can't figure out how to translate these few lines of code. I've tried using the subprocess module like:

WWS=subprocess.call(['java', 'gov/usgs/winston/server/WWSClient.class'])

but the best I can get is the error "could not find or load main class gov.usgs.winston.server.WWSClient.class"

Thankful for all the help!

2

There are 2 best solutions below

3
On

There are a few ways you can do this. One of the easiest ways is

import subprocess
subprocess.run(["java", "-jar", "*PATH*\filename.jar"])

The python subprocess command runs a system command. It takes a list as an argument, and the list is just the system command you want to run and it's arguments.

2
On

Also you can use the following code:

import subprocess

command = "java -jar <*PATH*\filename.jar>"
result = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()

And result is the output of the jar file.