Tagged Questions
1
vote
2answers
41 views
Execute .exe on java, who require some library
I have a little problem today,I want to use this tool http://freecode.com/projects/jpegoptim on my java program. But on windows it's only work with Cygwin after install jpeg library.
So my question ...
5
votes
4answers
69 views
How to run a java application from another java application and keep it running after the master program returns?
I'm trying to run ApacheDS instance from my java application.
I use such run() method of ScriptWrapper class to execute script that is shipped with ApacheDS to run it:
public class ScriptWrapper ...
-1
votes
0answers
44 views
How pass java code to python. (Runtime) [closed]
I intent pass the java code to python. The code is:
Runtime runtime = Runtime.getRuntime();
Process process;
process = runtime.exec(command);
process.waitFor();
InputStream is = ...
0
votes
0answers
37 views
Java exec Error: Fatal system Error 1020005
I have a problem with a Java program. I uses a tool "ugpc" to get the assembly structure and write it in a textfile. When i start the program under netbeans it writes these files without problem. but ...
0
votes
2answers
50 views
exec command is not working in php script
I have a java file and it will generate itunes report. I want to execute this within my php script. Im using the exec() function in php:it is working properly in linux.But not in windows.Am i missing ...
1
vote
1answer
415 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
189 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
1answer
52 views
Cannot run 'cmd' command with parameters 'sc sdshow w32time'
I am trying to run an external process in Java and I have no idea why my code isn't working. It works for any other 'cmd' command (for example /c dir). If I replace cmd sc sdshow w32time with cmd /c ...
2
votes
1answer
107 views
Why is Runtime.getRuntime().exec forking a process as root in Tomcat?
I am using Runtime.getRuntime().exec(...) to execute a python script from within a Tomcat webapp. Everything goes fine when I am in my development environment (Eclipse running my local Tomcat (located ...
0
votes
1answer
100 views
process exec with bin/bash is not working in JAVA
I'm trying to do the below in JAVA but its not working for me: The file opt is empty.
The program: RNAfold calculates structures: reads from file: "seq" and writes to file "opt" the structures.
(It's ...
0
votes
0answers
95 views
Giving input to one program from GUI and taking output in GUI
I want to give input to a java program using my GUI(Myframeu java program) when "Output" button is pressed and give output in textarea.
The first code is my java GUI that is used to give input to ...
0
votes
2answers
47 views
Spawn another process and not wait for it
I have 2 java processes. I want to start one of the processes from the other process via ProcessBuilder.
My problem is that I only want to start the other process. I don't want to wait for any results ...
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 ...
0
votes
1answer
32 views
Running jdbc on top of multiple port forwarding
When I want to access the database, there is an architecture through which I need to tunnel my connection. So, when I have to use a GUI tool like MySQL Workbench, i have to open three Putty sessions.
...
0
votes
2answers
134 views
How to run a java program using apache commons-exec?
I am trying to run java code dynamically in my java application GUI. I have tried the following code:
Sring tempfile="java -classpath "+wrkdir+"/bin "+runfile;
CommandLine ...
1
vote
0answers
48 views
queries about running a php script(or other script) from java app using runtime->exec [closed]
I have some queries about trying to run a PHP script(or other script) by invoking it from within a Java app using runtime.getRuntime.exec("php script.php");
Is there some way to run a php script(or ...
0
votes
4answers
94 views
Executing bash script with tilde in path
I am trying to execute in linux:
command[0] = "~/test/bin/runScript_sh";
Runtime.getRuntime().exec(command);
But get an exception
java.io.IOException: Cannot run program
error=2, No such file or ...
0
votes
1answer
127 views
Java String execution in Linux terminal
I am using StringBuilder to create a string and then trying to execute the string on Linux terminal. But instead of executing whole command, it executed half command and then terminates it. This is my ...
3
votes
2answers
133 views
How to force Java to reload environment variables
I have a java program that launches a C compiled program via Runtime.getRuntime().exec(command). This "command" uses an environment variable.
If the java program is still running but the env varaible ...
0
votes
2answers
104 views
how to kill runtime.exec?
I use the code below , in my jframe in order to execute a shell script via java program, but when i implement an other method to stop runing process, this method is blocked by th first and i can't ...
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 ...
3
votes
3answers
160 views
Kill a process started by exec() after some duration and store frames in an array
Let me start off by saying that I'm completely new to Java. I'm from PHP background, but it so happens that one of my PHP tasks need to be converted into Java.
The task is splitting a video into ...
0
votes
2answers
509 views
linux - java / ant exec: error=2, No such file or directory
I'm using fedora 18 and jdk 1.7.13 installed in /usr/java. All executable files under bin folder have -rwxr-xr-x permission.
I set both ANT_HOME and JAVA_HOME in my .bashrc:
export ...
1
vote
2answers
163 views
running git from java, git prompts for user name and password, why?
I'm putting together a tool to automate some of my git tasks, but I'm running into a problem where "git commit" prompts for user name and password.
I can do git add, rm, status ok, but not commit.
...
0
votes
1answer
257 views
Running a bash script from Ant and passing it multiple arguments
I'm trying to run the following command from an Ant build file:
sh /home/myuser/scripts/run.sh -p=8888 -z=true /home/myuser/resources/mydir
So far here's my best attempt:
<target name="run">
...
0
votes
2answers
69 views
executing a java package using exec in php
I have a folder AuthoringTool in the wamp\www directory.
Inside this, I have a package authoring_tool which contains two java file and related class file. I can execute the package using
java ...
0
votes
3answers
105 views
Jar file doesn't work on the web server
I have an Jar file that is working perfectly fine on my Mac using console:
MacBook-Pro-Pavel:PDFparser pavelpigalev$ java -jar PDFparser.jar
Usage: java PDFparser <input-pdf> -p1 ...
0
votes
2answers
111 views
Capture the output of an external program in JAVA
im tried to capture output of an external program usin java but i can't,
i had the possibility to show it but not to put it into a variable :'(
i use for example sqlplus to execute my oracle code ...
1
vote
2answers
163 views
Avoid “su” toast on shell command execute in Android?
I'm developing a simple app that injects lines on build.prop by executing a shell command. My main problem is that every time I check a toggle that create the function a toast displaying the shell ...
0
votes
1answer
112 views
Can't call Java program with arguments through PHP
I'm trying to connect a Java project with a website. The project is located in "website_folder/data/backend" and at that time, I want to test if the following example works:
[java code]
public ...
2
votes
2answers
72 views
Piping a subprocesses output directly to stdout (java/clojure)
I'm looking for a way to start up a subprocess in clojure (java is fine to) and have the output of it get sent directly to stdout in real-time. The closest I've been able to find is the Conch library ...
0
votes
2answers
106 views
Questions about .jar files and running a java program through PHP
I'm building a website which will use files in order to render social graphs. These files are created by a backend in JAVA. This JAVA program consists of 4 classes and 4 libraries. I know that in ...
0
votes
1answer
76 views
ProcessBuilder launching of X11 app fails with java7, worked with java6
I have a server process written in java that uses ProcessBuilder to launch a command line program (the R statistic engine) that can cause X11 to start up when run with the Apple 1.6 jvm. However, this ...
0
votes
2answers
130 views
Imagemagick can't open file when executed from Java Servlet
I'm trying to convert files from png's to pdf using imagemagick and Java. I've got everything working to a place when I'm executing imagemagick command to actually merge multiple png's into one pdf. ...
1
vote
2answers
161 views
Java exec() mysqldump error: Couldn't find table “>”
I'm executing mysqldump command from a Java class but I keep getting the error mentioned in the title.
This is the code I'm using:
Process runtimeProcess = ...
1
vote
0answers
98 views
Java exec() works in IDE but not from .jar
I use the following code to run a batch file and it runs perfectly from the IDE (Netbeans if it matters). I set the working directory (in the run tab of the project properties) to the same directory ...
0
votes
0answers
114 views
Running exec on java class file (from Java code) NoSuchElementExecption
I'm trying to run several compiled java source code from my java program using exec command.
I've changed the default inputstream to be my inputfile and the err and out to be my output file.
There is ...
3
votes
3answers
130 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 ...
-1
votes
4answers
315 views
php exec() & java send parameters
I want to connect to java via php and print the result out in php. Now I want to send a parameter to java and return it to php to see how it works. How can I do this?
I have this code so far:
PHP:
...
2
votes
3answers
216 views
Execute Java on Ubuntu: PHP exec() is not working while console works just fine
My website needs PHP to run a Java program in the background. So, PHP issues exec() method to let Java do all the work. The implementation works fine on Windows, but completely failed on Ubuntu. While ...
0
votes
1answer
249 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 ...
1
vote
1answer
68 views
Scala - Fails to execute a process through terminal in a particular scenario
I'm using graphviz to generate graphs based on the messages passed in a scala program.
To invoke the graphviz application from inside the scala program, I'm using the exec() method (similar to Java). ...
0
votes
2answers
121 views
Not able to run specific terminal commands from java program(Eclipse)
Using ProcessBuilder in JAVA I am able to run simple terminal commands like ls,pwd,echo etc..etc...
But following code is getting terminated , don't know why??
public static void main(String[] args) ...
10
votes
3answers
224 views
using cmd with in responsive mode in c++ or java
I am using OpenSSL in my c++ app, The problem is if I use exec("Open ssl command")
Then it will execute that particular command , but actually this command is repsonsive,I mean it further asks you ...
1
vote
2answers
191 views
android getRuntime().exec() with cat command
I am using the process class to run this command
/sdcard/file1.mpg /sdcar/file2.mpg > /sdcard/out.mpg
Here is how I am trying to do it:
Process processx = Runtime.getRuntime().exec(new String[] ...
0
votes
1answer
195 views
Executing external Java program from a webapp
I am trying to call an external Java class file from a servlet running on Tomcat 6, Windows 7, 64bit .
There are already some threads on this subject around, but none are really helping me.
Fyi, I ...
0
votes
1answer
66 views
Java program runs differently from shell and with exec() in PHP
I am running a Java program on a web server and passing it arguments that come from PHP variables, and I'm running into a bit of a confusing issue. A Java program I am using seems to exhibit ...
0
votes
2answers
155 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
2answers
2k views
How to get java getRuntime().exec() to run a command-line program with arguments?
I've been trying to write a java program that uses the Runtime.getRuntime().exec() method to use the command-line to run an instance of the program "tesseract".
Some background, Tesseract is a free ...


