Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I want to run a TCL script out of my JAVA program.
As I want to create a GUI which will start a TCL script in the end.
I have some knowledge of JAVA and none of TCL.
I'm happy about every hint!
Use ProcessBuilder for launching the TCL scripts from your java program
Examples
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I want to create a console application with all the functions of the top command, but through java
how to create this consol app with the top command through java professionally
I think it could be like this one:
Runtime.getRuntime().exec("ps");
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I need to create a java program which runs all the time since the boot, and I'd like to be able to comunicate with it when some some event (inputs from a hosted php server) happen.
In my mind there should be a daemon running and a way to give him some instructions, any suggestion? Is there a simple way to do that?
You could create an http endpoint and then do a post to it with the info that you want the service to handle
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am trying to convert my java program, TextFileAnalyzer, to a standalone application. I am not sure how to go about this I have done research and did not find anything helpful. If someone could get me in the right direction that would be awesome! Thanks.. Here is my program for reference:
You don't say what platform(s) you are targeting, or if you need to ship a complete executable. But, there are a few cross-platform Java wrappers. A common one is Launch4J.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I am new to KLEE, I want to run klee tool in java can you please tell me is it possible to run KLEE in java ? it yes, please show me some tutorials.
KLEE works on LLVM bitcode, I don't think it's possible to run klee in JAVA. If you are just looking for a symbolic execution tool for JAVA, you can try JPF.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 months ago.
Improve this question
I want to execute powershell cmdlets using java . Is there any way i can implement this?
I tried using Runtime and exec commands but output window hangs in between.
It's easier to use the newer ProcessBuilder class. Runtime.exec has several pitfalls that you need to remember, in order for things to work correctly. For example you need to make sure that the input and outputstreams to the process are handled correctly.
I suggest you google for an example on using ProcessBuilder.