1
vote
1answer
401 views

exec not working with java 1.7.21, but in netbeans works fine

I made a little program and it worked fine, but now. First, it mux the xml chapter file in the mkv file, so we get a muxed mkv file. Some day ago I updated java to 1.7.21 and I think this is the ...
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 ...
1
vote
3answers
65 views

Runtime.exec not running but no exception

I want to use java to run a script in a certain location. The script running fine if I run it manually: /export/home/trace.sh param1 param2 param3 param4 This is my code to run the script from ...
2
votes
0answers
53 views

Java run another class and control its I/O [duplicate]

I need to (compile and) run another class with main method in Java and read its output and later write into its input, but focus on reading first. Let's say i need to test wether the application ...
1
vote
2answers
58 views

How I run a console application from a java console?

I am messing with Runtime.getRuntime(), but I don't think it really what I want. I want something that has both user input, and output that goes to stdout. I would like a whole seperate program to ...
0
votes
0answers
92 views

Start Groovy from Java extending Environment Variables

Does anybody know a way, to pass Environment Variable to Groovy? I try to Start Groovy From Java like this: new GroovyShell().run(new File(sGroovyscriptName), params); This will execute the Groovy ...
0
votes
0answers
174 views

Runtime.getRuntime().exec failed

I am trying to copy a file through Unix command. I am using java Runtime.getRuntime.exec(new String[] { "/bin/sh", "-c","cp " + pdfoutputPath+fname + " " + path + "SR_"+fname}); But cp command is ...
6
votes
3answers
542 views

PHP exec() performance

The following PHP code does return me a runtime of about 3.5 seconds (measured multiple times and averaged): $starttime = microtime(true); exec('/usr/local/bin/convert 1.pdf -density 200 -quality 85% ...
0
votes
1answer
130 views

Logcat displays nothing when used from Runtime.exec

I'm running the command logcat -d AndroidRuntime:E *:S When ran from adb on my computer, it displays all the things it should. When I try to run it from an Android application with ...
3
votes
3answers
129 views

Buffered Reader refusing to output data

I'm trying to create a program to find all files by a certain name on a Linux server, and then pipe their absolute paths into an ArrayList for processing. My method of using a Process (with exec) and ...
0
votes
1answer
244 views

Java SE 6: How to open files externally by Runtime.getRuntime().exec() on Ubuntu Linux?

I'm using Java SE 6 and want to open files in an external process by a predefined program. Currently I am using the following code for pdf files for example: Windows: public static Process ...
0
votes
2answers
154 views

Running PHP from Java

I am trying to run the following from java file. I am trying to display the php version and later will change to run php files. Process p = Runtime.getRuntime().exec("cmd /C PHP/php.exe -v"); ...
1
vote
1answer
148 views

Runtime Exec changing path

I need to launch another Java program at runtime, this is my code try { String cmd2 = "java -jar c:\\test\\deploy\\framework_e_app.jar"; ...
0
votes
3answers
228 views

Save output of external program call in textfile in java

I am using Windows! I want to call a small .exe application from my java command line which is called "saucy.exe". It needs an input file "input.saucy". Both are stored in the correct directory. ...
0
votes
2answers
122 views

Eclipse gives different output than cmd using runtime exec

So here is my code: System.out.print("hellow"); try { int x; Runtime rt = Runtime.getRuntime(); Process proc = rt.exec("java CPU/memory"); BufferedReader in = new ...
2
votes
3answers
2k views

Android “permanent” superuser permission for an app?

To clarify, I use this code to get superuser permission for my app so I can access root and whatnot: public String runProcess(String[] functs) { DataOutputStream dos; DataInputStream ...
1
vote
3answers
1k views

java getRuntime().exec() not working?

Basically, when I type these commands in the terminal by hand, the sift program works and writes a .key file, but when I try to call it from my program, nothing is written. Am I using the exec() ...
0
votes
0answers
86 views

getRuntime().exec() parameters

I am using following code to compile a c Source file through javacode. Process process = Runtime.getRuntime().exec("C:\cygwin\bin\bash -c gcc AAA.c"); what is the meaning of the "-c" in above ...
1
vote
3answers
446 views

Java runtime exec

I am trying to do something using system exec in Java Runtime.getRuntime().exec(command); Surprisingly everything that is related with paths, directories and files is not working well I don't get ...
0
votes
1answer
434 views

Execute command prompt's command from java to create jar file

I tried to create jar file using command line that I inserted into java code, but it didn't work. The java code was like this: try { Runtime a = Runtime.getRuntime(); a.exec("cmd cd E:/My ...
2
votes
3answers
371 views

Does JNA system() avoid a fork

I am trying to find an alternative to Java Runtime.exec() that does not use a fork. The problem being that our JVM consumes most of the memory and a Runtime.exec fork on that process may cause ...
1
vote
1answer
353 views

Runtime.exec() won't finish properly

I've created a WebApp that relies on external scripts to gather query request by the user (internal software). I've tested, with sucess, the WebApp off the glassfish server provided by netbeans but ...
3
votes
2answers
338 views

Runtime.exec fails without any exception/warning/error code

This is really weird and eating away my brains. I am using Runtime.exec to start another jvm and it quietly exits even without starting. p = Runtime.getRuntime().exec("java classname", null, ...
3
votes
1answer
904 views

How to use Telnet from Java

I need to telnet to a server, execute a few scripts, give inputs to those and receive output. Can I directly use Runtime.exec() and give the telnet command or do I need to learn about sockets? I ...
0
votes
2answers
258 views

Opening PDF only works in netbeans

I have written a program that creates PDF documents. After creating, the PDF's must be opened so it can be printen. i have the following code, but it only works if i launch from netbeans. Could ...
0
votes
4answers
224 views

external program from java doesn't terminate

When I try to execute an external program from java I use this code below : Process p; rn = Runtime.getRuntime(); String[] unzip = new String[2]; unzip[0]="unzip"; unzip[1]=archive ; public void ...
0
votes
3answers
3k views

Running Shell or System Command in JAVA

private void myFunction(String userName){ String fileName = this.generateFile(userName); String[] command = new String[4]; command[0] = "cmd"; command[1] = "/C"; command[2] = ...
1
vote
1answer
592 views

Exec() not interpreting the multiple commands correctly

I am trying to run two commands through exec() but it seems as if the commands are not correctly parsed. I have the following code of line: cmd = "scp -rp /mnt/backups/updateimage/images ...
1
vote
5answers
4k views

Runtime.exec on argument containing multiple spaces

Can anyone make the following run? public class ExecTest { public static void main(String[] args) { try { //Notice the multiple spaces in the argument String[] cmd = ...
-3
votes
2answers
757 views

Runtime.getRuntime().exec() with gpg command not working

I have gpg command which encrypts the file gpg --batch --yes -o abc.csv.gpg -r 'balu shanmukh' -e A2.java in the above command --batch --yes -o -r and -e are options and balu shanmukh is the ...
0
votes
2answers
481 views

Java exec or runtime not working with ssh

I'm trying to ssh into ubuntu using exec, but for some reason when I execute from the code I get the error port 22: Connection refused In the code I use concat to put the strings together, but I know ...
3
votes
3answers
1k views

TCL - How to print on the screen th messages that where printed during execution of exec command?

Say I have want to execute a script or and executable file by printing runtime the output of execution. When I do: set log [exec ./executable_file] puts $log Then it waits a long time and then ...
0
votes
1answer
259 views

How to execute a Unix shell script via GWT?

Im building an GUI that will help my team mates to execute some jars without going using the terminal (with all the validating and stuff). At some stage, the gui sould gather params from the gui and ...
0
votes
1answer
1k views

Runtime exec on linux

I want to run a java program (jar) in an other terminal on Linux. Here is my code : import java.io.BufferedWriter; import java.io.FileWriter; import java.io.OutputStreamWriter; public class Launcher ...
3
votes
1answer
2k views

Runtime.exec() in Android hangs

When I try to exec an external script in this way: try { process = Runtime.getRuntime().exec( new String[] { "/system/bin/sh", "./myscript.sh" }, null, "/data/mydir", ...
2
votes
1answer
1k views

Writing Output & Error to Log files using PumpStreamHandler

I have been searching for a while to get a good example for writing Process output & error stream to log file. I use apache-commons exec library to execute my process. Following a code sample to ...
3
votes
1answer
5k views

Java Runtime.exec woes on Linux

Hey guys. I'm working on a program in Java designed to be used on a Linux environment that creates a new Java process that runs another Java class, but I'm having trouble with it. I've finally fixed ...
1
vote
2answers
134 views

Any way to identify/examine the thread that an external process is running in?

I am using Runtime.exec() to launch an external 16-bit DOS program (for legacy app compatibility reasons) within my Jave web application. I have stream readers to capture the process's output, I have ...
2
votes
3answers
9k views

Redirect Runtime.getRuntime().exec() output with System.setOut();

Lets say I have a program Test.java: import java.io.*; public class Test { public static void main(String[] args) throws Exception { System.setOut(new PrintStream(new ...
3
votes
1answer
359 views

How to execute a command(with arguments) in ubuntu 10.04 environment

I've a created an standalone application in which my aim is to execute a command(with arguments Eg: gedit filename). How to do this through java programming. I tried the following piece of code, but ...
0
votes
3answers
308 views

Environment variable problem using java

Steps using runtime api echo %PATH% (output will be something like "c:\windows\system32;d:\test") execute ping or any system command, the output will be success delete one value for the path like ...
1
vote
3answers
4k views

Java - Run Excel using runtime.getRuntime().exec

try { Runtime.getRuntime().exec("excel C:\\file.xls"); } catch (IOException ex) { System.out.println(ex); } Doesn't work. I have to put the full path of excel.exe in order to work. How can I ...
0
votes
3answers
1k views

How to read command line ouput from Java (via Runtime.getRuntime().exec(…))

I'm trying to present some information in a Swing application about the existance of symlinks. The GUI has a JTextArea resultTextArea and a JTextField statusField. This is the code inside the Dialog ...
3
votes
2answers
269 views

why cant I use log files in java runtime

I have (in java), rt.exec("qq.exe -i ..(some other parameters) > qq.log");//*1 when I run qq.exe -i ..(some other parameters) > qq.log in terminal It works fine and keeps the qq.log file ...
2
votes
4answers
3k views

Java - Runtime.getRuntime().exec() what's going on?

I have problem with Runtime.exec() in Java My code: String lol = "/home/pc/example.txt"; String[] b = {"touch", lol}; try { Runtime.getRuntime().exec(b); } catch(Exception ex) { ...
0
votes
1answer
2k views

How to open word document with /m “Macro argument” from java/or command-line without to specifi winword.exe path

I want to do the next thing: String[] cmd = {"cmd","/c","c:\\Program Files (x86)\\Microsoft Office\\Office12\\WINWORD.exe","/mOpenPage","c:\\Navodilo.doc"}; Process proc = ...
1
vote
3answers
4k views

When executing batch file from Java Runtime, native DOS commands fail to run

When I execute the batch file directly in DOS, everything runs as expected. But when I execute the batch file from Java runTime, it will run only the commands that invoke jar files (ie. invoke the ...
0
votes
1answer
502 views

Java runtime.exe() Error launching browser : error accessing current directory

I have been trying to launch browser from a java app on Linux. When this app is run for the first time browser don't get opened. The error log shows : shell-init: cannot get current directory getcwd : ...
22
votes
9answers
23k views

How to add a timeout value when using Java's Runtime.exec()?

I have a method I am using to execute a command on the local host. I'd like to add a timeout parameter to the method so that if the command being called doesn't finish in a reasonable amount of time ...
1
vote
2answers
2k views

Make application run in its own directory

I'm trying to get an application (a game) to start with a Java script. There is a long explanation behind why, so I'll skip that part. The game won't run unless it is executed from its own directory, ...