The Runtime.exec() method allows Java apps. to create a new OS Process.
0
votes
0answers
26 views
Runtime.getRuntime().exec() issue with stty command
I'm trying to detect the availability of the "stty" command in Java.
I tried to use this code:
boolean hasSttyAvailable() {
Process process = Runtime.getRuntime().exec(new String[] {"/bin/sh", ...
0
votes
2answers
43 views
Not getting any output after calling C executable file from Java code
I am trying to execute the C code from Java code which is already compiled and executed, but, I am not getting any output from the executable file. Can anyone help me to complete this task?
Code is ...
0
votes
0answers
12 views
Runtime.getRuntime().waitfor() ; error with long string
i am trying to use this command from java program
Runtime.getRuntime().waitfor() ;
i am using tts to convert a test to audio.
the problem is it has 4 arguments, and the last argument is the ...
2
votes
1answer
70 views
Run execute file in Runtime.exec() and get user input
How to run c execute file with user input in Java Runtime().exec(). Without user
input in my c program execute file runs in Runtime().exec():
For example: Below c program if n is predefined and ...
0
votes
2answers
33 views
Change content of batch file
How to change content of batch file using Java code?
I worked with parsing XML using Java program. It worked fine. But can I do same for the batch file using Java?
I am able to run batch file using ...
-1
votes
1answer
26 views
Restart Unix service
I have Ubuntu in my machine where I have installed snmpd. To start stop I use below command:
service snmpd start
service snmpd stop
Now I have to execute this comments from java. I have tried with ...
0
votes
2answers
32 views
Java process.waitFor() does not return
On Windows 7 64 bit, running 64 bit Java 1.7.0_17 , the p.waitFor() shown below never returns.
String move_command="cmd.exe /c xcopy /Y /E "+x86_release+" "+path+"\\";
Process p;
p = ...
0
votes
0answers
40 views
make a simple java program that runs command prompt commands from the java program somewhat similar to jCreator
I am trying to make a simple java program that runs command prompt commands from the java program somewhat similar to jCreator.in here I only wanted to compile and run the relavant main class.
this ...
0
votes
3answers
52 views
Pass a string with spaces to an execute command in Java to execute a bash script
How do I pass a string with spaces to an execute command in Java to execute a bash script?
I'm trying to use a script to generate and send a email using the unix mail command but it ignores the ...
2
votes
1answer
33 views
Shell (bash) brace expansion with Java's runtime.exec
I'm trying to get an expansion command to work with runtime.exec, but the braces are being interpreted as literals rather than being expanded. Here's what I'm trying to do:
String command = "mkdir -p ...
0
votes
1answer
47 views
Unable to run Shell Script
Hi i am trying to run shell script from following code
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class ScriptTest {
public static void ...
0
votes
3answers
85 views
Command prompt doesn't open with Runtime.getRuntime().exec
I've created a GUI (swing) that executes a batch file that contains a command prompt .exe file execution with specific parameters.
When I run the batch file manually (by double clicking it), ...
0
votes
2answers
52 views
how to wait for batch command to complete its excecution in java
I want to wait till my batch command completes its execution and creates a csv file as out put.the code is as bellow for excecuting batch file
String command = "cmd /c start " + batFile;
...
0
votes
2answers
43 views
error when trying to execute exe from Runtime object in java
I am running windows 7 and have an exe file I am trying to run using the following command in Java:
File dir = new File("C:\\PATH\\TO\\DIR");
String[] cmdArray = {"file.exe"};
if(dir.exists()){
...
0
votes
1answer
34 views
Trying to execute a Java jar with Runtime.getRuntime().exec()
In the project I am working on, I need to execute a script that I have in a resources folder -- in the class path. I am simply testing the final script functionality, since I am on Windows, I needed a ...
1
vote
4answers
54 views
.jar not executing and showing the System.out.print(); output
My problem is when to call jar file using
Runtime.getRuntime().exec() method, my .jar is not executing and showing its output
Coding is like that
public static void main(String[] args) { ...
-1
votes
2answers
81 views
Runtime's exec() method is not redirecting the output
Process p = Runtime.getRuntime().exec("sh somescript.sh &> out.txt");
I am running this command using Java. The script is running but it's not redirecting its stream to the file. Moreover, ...
1
vote
0answers
48 views
Launch an app from applet in Windows 8 & Java 7
Before updating to java 7, I could launch an app from an applet using this code.
public class RIS extends Applet
{
public void init()
{
String rutamedical = getParameter("dir");
String ...
0
votes
2answers
84 views
Runtime.exec command not working
I have a java application that downloads a file from a web service using wget. When executing the command through java it returns with: "wget: not an http or ftp url:"
When i execute the command ...
1
vote
2answers
160 views
JavaScript to Java Applet using DeployJava.js to run commandline
I am pretty new to Java. I want to create a Java Applet that will allow my JavaScript to pass a commandline to the Java Applet. This will only ever be run on my development machine - no need to remind ...
0
votes
1answer
38 views
Wrong exit value from external program
I'm trying to read exit value from external program but it's always 0.
String command = ("cmd /c start /wait "+ Script[0]);
Process exec = runtime.exec(command); ...
7
votes
2answers
287 views
Python GUI from Java
I am working on a program which takes a user input and generates an output as a map projection plot.
The easiest map projection library that I have found is matplotlib-basemap, written in python a ...
3
votes
1answer
42 views
Set System.setOut(); to Command Prompt [duplicate]
I want to set output stream to the Command prompt like this:
Process p = Runtime.getRuntime()
.exec("C:\\Windows\\System32\\cmd.exe /c start cls");
System.setOut(new ...
0
votes
1answer
60 views
Exec runtime on Java EE servers
For some reasons on my project I need to run this command "gcc file.c -o file.exe" on a Java EE server, I used this java code
try {
Runtime runtime = Runtime.getRuntime();
String[] ...
0
votes
1answer
47 views
How do I execute a sequence of related console commands?
I'm currently working on a project where a client receives shell/console commands from a server, and must execute them.
How do I get Java to run these commands from within either a shell or a command ...
-1
votes
1answer
63 views
Compile and Run a java program in another java program not working
I have 2 classes Tester.java and Main.java, I want to run Main.java from Tester.java .. I got this code from a question posted by other user and this is supposed to be the working code but it's not ...
3
votes
2answers
184 views
How do Jar files work when using runtime.getRuntime().exec() [duplicate]
I am trying to create a jar file that will execute my game with just a click. My game exceeds java's default allocated heap memory so I have to run my code with -Xmx1000m. I've been researching online ...
0
votes
2answers
65 views
display the output-stream of a Process returned by Runtime.exec()
How do I print to stdout the output string obtained executing a command?
So Runtime.getRuntime().exec() would return a Process, and by calling getOutputStream(), I can obtain the object as follows, ...
0
votes
0answers
72 views
code runs in command prompt but does not run in eclipse
The code given below is the code that i try to run in eclipse which returns stdInput.readLine() as null when i try to run the command through command prompt it runs successfully what am i doing wrong?
...
0
votes
1answer
46 views
How to use two java.lang.Runtimes in the same Method?
I want to use two Runtime in same method. The second uses the result of the first. I return the results of in two files (*.txt). The result of execution of the first is ok, but the file of the ...
0
votes
0answers
64 views
Read/Write to command-line .exe Java
I'm trying to launch a process in java, read the output, write to the program, then read what it responds with. From all the other answers on SO, this is what I have come up with:
class Main
{
...
1
vote
1answer
99 views
Java Signed Applet Not Working on Browser
I created a java applet,jar file using these three steps.I write a code that which opens windows calculator.It works on with ide or opening from folder.On browser after it gets permission it does not ...
0
votes
1answer
37 views
What was the reason of “access denied” exception while executing Runtime.exec() on Android?
I have native executables compiled for Android and they are located in /data/data/my.app.package so I believe app is able to execute executables there.
Unfortunately Runtime.exec() causes an "access ...
0
votes
1answer
64 views
Triggering method from a started jar File which was loaded via Runtime…exec(“..”) in a java file
this is what I want to do:
I need to start two jar Files from out of a java file and i want to call a method from the firstly started jar file, when i read a specific status from the second jar file. ...
1
vote
2answers
94 views
Restore PostgreSQL database using java
im using the following code to Restore PostgreSQL database using java
Runtime r = Runtime.getRuntime();
Process p;
String cmd ="D:/Program Files/PostgreSQL/9.1/bin/pg_restore.exe --host localhost ...
0
votes
3answers
348 views
Process.= Runtime.getRuntime().exec() not working for me
when im executing linux command from java its not working can any one help me about this problem.
process3 = Runtime.getRuntime().exec(new String[] {"ls",
"-1s",
...
1
vote
0answers
74 views
Running batch command gets stuck on Runtime.exec.waitFor()
I run a batch command from Java like this:
String command ="cmd /c " + mPathToZip + " a -tzip " + source
+ "foo.zip " + source + "* && exit";
try {
...
0
votes
2answers
91 views
Performing multiple executions on Runtime exec
I'm trying to do this simple unix ls in Android:
cd /data
then
ls
It should return all the content of /data folder.
I've this coded:
try {
String line;
Process p = ...
0
votes
1answer
172 views
JVM args via java runtime exec
currently I am working on a project that requires me to use java's Runtime .exec(String[]), however I am having some "non code related" issues with this the executable. First, I am unable to provide ...
0
votes
1answer
70 views
Storing the o/p of Runtime.getRuntime().exec(command);
I am new to java..... I have 3 files in the zip folder, which I m extracting it using
String command = "cmd /c start cmd.exe /K \"jar -xvf record.zip\"";
Process ps= ...
0
votes
1answer
158 views
mysqldump returns code 6 when run from java, but the same command works fine from command line
When I run the same command from Java via Runtime.getRuntime I get the return code 6. The same command works fine from command line:
process = Runtime.getRuntime().exec(mysqldumpCommand);
int ...
0
votes
0answers
31 views
Why java -version output comes in ErrorStream [duplicate]
I am have different versions of JDK. I am trying to implement a java code using one JDK to find the JDK version of others. Below is the code I use
final String cmd[] = {"c:\program file\jdk1.7", ...
1
vote
1answer
97 views
Change PWD of linux from JSP
I need to execute linux commands from JSP.
It is working fine.
But i need to start some sh file in a particular directory in linux through JSP. say /home/username/something/start.sh
try{
String ...
2
votes
0answers
51 views
How will I know the command was executed? [duplicate]
I comunicate with the console application with getRuntime().exec() on Android.
This code:
Process process = Runtime.getRuntime().exec(true ? "su" : "sh");
// InputStream for program
DataOutputStream ...
0
votes
1answer
174 views
Running command line on a remote machine using Java
Is it possible to run command line on a remote machine (not on the server machine where the application is hosted).
I understand Runtime.getRuntime().exec(".."); will try to run the script on the ...
0
votes
1answer
118 views
Runtime.getRuntime().exec() work incorrect
I try to run python application on Android in my application.
This script work correct in Better Terminal Emulator Pro
su
busybox chroot /data/local/debian /bin/bash
/usr/bin/python ...
0
votes
1answer
258 views
Error passing filename in Runtime.getRuntime().exec(…)
I'm trying to compile a python file from a java program. When I pass the file name directly it works fine. But when i try to pass a string containing the file name in the function I get an error.
I ...
1
vote
3answers
193 views
Running a java program from another java program
I am working on a simple java program. It simply compiles and executes another java program. I am using Runtime.exec() function to compile and run. There is no problem with compilation. but when it ...
0
votes
0answers
91 views
Chaining commands in Unix with Runtime.exec (Java)
I'm trying to use runtime.exec to execute to execute a command, which is passed into the code as a string. The string itself is fine and executes as expected when copy-pasted into a terminal, but ...
0
votes
4answers
220 views
Running .bat from Java doesn't show the CMD
I'm trying to run a.bat file which is located here:
C:\A\B\C\D E\F
So I invoke:
cmd /c "cd C:\A\B\C\D E\F && a.bat"
on the CMD and I can see the execution of the file.
Now I want to run ...






