3
votes
2answers
100 views
Saving to a subversion repository from Java
I want to save to a subversion repository.
I am using the command - svn commit -m \"\" ./cms_test/www
My class is:
public int doBackup(){
int exitVal=-99;
try
{
Runtime rt = …
2
votes
1answer
29 views
Runtime.getRuntime().exec() with a non-ASCII string in Windows?
Trying the following method to open an Arabic URL:
String cmd = "cmd.exe /C start \"Open file\" \"http://ar.wikipedia.org/wiki/موسوعة\"";
Runtime.getRuntime().exec( cmd );
Unfortunately, the …
2
votes
6answers
949 views
Runtime.getRuntime().exec(), hide the console screen
I am executing a batch file using Java code. The code is given below:
Process proc = null;
proc = Runtime.getRuntime().exec("cmd /c start somebat.bat");
With this, the normal command prompt screen …
2
votes
3answers
509 views
Hudson job hangs at Runtime.exec
I'm running Hudson as a windows service through Tomcat, with no slaves involved. The last build step in the job is a batch file that invokes some Java code. The code uses PostgreSQL's command line …
2
votes
2answers
402 views
Code run by Hudson can’t find executable on the command line
I'm setting up my first job in Hudson, and I'm running into some problems. The job monitors two repositories, one containing our DB setup files, the other a bit of code that validates and tests the DB …
1
vote
2answers
98 views
Graphical Sudo for Mac OSX
Hi.
I'm designing a little software in java.
Don't know the term/definition to what I'm doing, but I'm prompting commands from java to the terminal. Something like this:
Process process = …
1
vote
3answers
209 views
Is there a way to generate the 8.3 or ‘short’ (Windows) version of a file name in Java?
In our application, we are allowing users to open files and directories.
Java 6 provides us with...
java.awt.Desktop.getDesktop().open(file);
which works great. However, since we need to ensure …
1
vote
2answers
135 views
A problem with Runtime exec and a custom built RTF editor
I have a class that manages the creation of RTF documents and a method in that class that calls the RTF editor with a xml file for display.
All but one user can access this editor without any issues. …
1
vote
3answers
720 views
How to close command windows with Java
Each time I use Runtime.exec("cmd /c start....") I am opening a cmd window. I would like to create a more seamless application by closing each previous cmd window. How can I do this?
If anyone knows …
1
vote
3answers
1k views
How do I run a batch file from my Java Application?
In my Java application I want to run a batch file that calls "scons -Q implicit-deps-changed build\file_load_type export\file_load_type"
It seems that I can't even get my batch file to execute. I'm …
1
vote
5answers
1k views
Problem with starting OpenOffice service (soffice) from Java (command working in commandline, but not from Java)
Hi.
I want to exceute a simple command which works from the shell but doesnt work from Java.
This is the command I want to execute, which works fine:
soffice -headless …
0
votes
3answers
48 views
Compressing and Archiving the files in the folder using Java Runtime
Hi,
I am trying to Compress and Archive all the files in a folder, using Java Runtime class. My code snippet looks as this :
public static void compressFileRuntime() throws IOException, …
0
votes
1answer
98 views
Calling a .Net Window-based application using Runtime.getRuntime().exec from a Spring Controller running on Tomcat.
I am calling an exe file called myapp.exe via a Spring Controller; here is the code in the controller:
Runtime.getRuntime().exec("D:\vmd\apps\myapp.exe");
myapp.exe is a C# .NET application. If I …
0
votes
1answer
473 views
Runtime.exec causes duplicate JVM to hang indefinitely until killed (Solaris 10)
All,
We are running a J2EE application on WebLogic server 9.2 MP2 with a jrockit 64-bit JVM (27.3.1) on Solaris 10.
We call use runtime.exec to call an executable called jfmerge to create PDF …
0
votes
2answers
341 views
Runtime.exec() with absolute directory
I would like to use Runtime.exec() to initiate another process in a directory with spaces. (It sounds stupid but I really want to satisfy my curiosity)
Details of the problem(simplified version)
I …
