I am trying to create a tool using java where I want to embed and execute external third party exe and get the output from it in my tool that I am creating.
My constraint is that I cannot let the user get hold of this embedded exe on the system that I am running the tool on, so it must be dynamically deployed, executed and receive output from it and then deleted before the user exits the tool. My tool can be either a jar or an exe.
Is there a way to do this?