Invoke a Program Written In Other Language (ex. Java)

Hello, I am trying to understand UiPath’s capabilities. Is it possible to invoke a program written in Java or Python? For example, if I create a simple .py file with a main function that returns some string, can I invoke that from within UiPath Studio?

Thanks in advance.

Hi,

From what I know, you can execute it as long as you can run it through commandline, Powershell, or opening some Application that runs it.

Start Process activity is like commandline where you start an .exe then include the script file as an argument.

Powershell activity will let you trigger a .ps1 file that runs your script file.

Open Application activity (similar to Start Process) let’s you open software with the script file as an argument.

1 Like

Yes you can execute the java program from Uipath. Below are the steps:

Create an exeuctable jar file and use Start Process Activity.
In the Activity, give the path and filename for jar file and execute it.

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.