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 ...
0
votes
0answers
30 views

Using Java to Launch a Batch File Which Runs WMIC

First let's start with the code: import java.io.*; import java.io.IOException; import java.net.URL; public class InfoFileReader{ public static void main(String args[]) throws IOException{ ...
-2
votes
0answers
46 views

How I can check if a folder exist, create a new one and subfolder if not, and after copy a folder template to this new sub directory created [closed]

Is it possible to do something to make these steps? It can be a bat file, Java or even Excel. User enters NIF (Number Financial) customer and the program will check if the file that is in the path: ...
0
votes
4answers
62 views

how to run java project using batch file

I have written java project which contains only one class. I want to run it on another pc's using batch file. Please advise me how to do this. My class contains parameters for running. I organize ...
0
votes
1answer
20 views

SLURM - OutOfMemoryError: GC overhead limit exceeded

I have submitted a sbatch job to SLURM. #!/bin/bash #SBATCH --job-name=freset_weighting #SBATCH --output=freset.out #SBATCH --error=freset.err #SBATCH --time=120:00:00 #SBATCH --mem=32769 #SBATCH ...
0
votes
1answer
33 views

How can I pause a Java splash screen from a batch file?

I have the simple batch file code, which is working: set path=%path%;C:\Program Files (x86)\Java\jdk1.7.0_05\bin javac C:\Users\Ian\Desktop\batchFileTest\GUI.java java -splash:images/splashImage.jpg ...
0
votes
1answer
27 views

Running a batch file that's inside of a jar file

I'm attempting to call a batch file which is packaged inside of a jar file from the jar file itself. I'm not altogether sure this is possible, but I figured if anyone knew how it would be someone on ...
-1
votes
1answer
41 views

How to merge two batch files using time delay?

My Applications consist fo two parts: 1.First part is downloading the jars from the web server using java web start.Here i am using command promt ,once i fire command ,jars are getting ...
2
votes
3answers
61 views

Displaying and copying output of a java program from command prompt into a file

i have a Java program which takes input from Users and displays output according to the input. The Program provides the user with a menu of options and the user is required to select one option from ...
0
votes
2answers
53 views

Running bat file in java not working

I am trying to make a program to decompile a binary this is my current code: try { PrintWriter out = new PrintWriter("Dumps.bat"); out.println("@title Dumping"); ...
-3
votes
2answers
66 views

How to convert command prompt command into .bat file [closed]

I have a one command to invoke some application from the command promt,once the command is fired the application starts. I want to convert this command into the .bat file,so that on clicking .bat ...
0
votes
0answers
12 views

Running Job in cloud environmental on only one server Where Server ip are dynamic on each deployment

want to run batch job on single server every one minute Use case: I have N number of servers. I just want to run this batch on server rather than all servers. Same code is deployed on all servers. ...
1
vote
1answer
64 views

Close command prompt window if any exception is thrown

I have created batch file and scheduled it for every 1 hour. Below is the batch file script set libpath=D:\Batch\Batch_lib set classpath=%classpath%;%libpath%\aspriseOCR.jar set ...
-2
votes
0answers
102 views

Creating Batch file for compiling and running java project

I have created one project, All files are in this folder F:\Desktop\Insurance Application\src files: abc.java, hgj.java etc. Now I want to compile all the .java files from this folder. And I want to ...
0
votes
2answers
101 views

Pass a value from .txt to a HTML textbox (using Batch, Java, or PHP)

Complex question so let me try to explain.... I have a text file (named filelist.txt) with a list of values like so: 12_23_4_ABC_| 12_35_6_XYZ_| 12_36_5_ABC_| 12_37_9_UVW_| 12_38_8_XYZ_| ...
0
votes
3answers
118 views

Creating a Batch File to Set Path in Java

I have installed JDK 1.7.0_17 on my windows7 32 bit machine and created a batch file set java path but it doesn't work. I have installed jdk under c:\program files.... and need to run java from E: ...
0
votes
1answer
61 views

Memory issue when trying to start a minecraft server via a python script

Okay iv been working on a hand full of tool to help maintain a large number a of game servers hosted on a single computer. What i'm am doing is lunching a .bat file from a python script. That bat file ...
2
votes
1answer
69 views

Running a Java Application on a Shared Drive from Windows Task Scheduler Client Side

First, just wanted to thank everyone in advance for helping with this, let me take you on my journey... Task: Run a Java application that is located in a folder on a file server using Windows Task ...
1
vote
2answers
107 views

Setup Notepad++ for Java

To use Notepad++ for Java, I created a batch file to compile and run the file: @ECHO OFF C:\Program Files\Java\jdk1.7.0_17\bin\javac.exe %1 C:\Program Files\Java\jdk1.7.0_17\bin\java.exe %1 echo. ...
0
votes
1answer
66 views

Input filename into jar from windows batch file

I want to input a file into my jar after it is executed from batch file. I wrote the following batch code. @echo off set path=%PATH%;C:\Program Files\Java\jre7\bin java -jar ...
0
votes
2answers
632 views

How to create Batch file to execute sql script

I'm in the last step to create an installation of a java swing application with inno setup. In this installation I call a batch file that get the installation of mysql . My problem is that I want to ...
0
votes
3answers
67 views

Run a java program at startup in windows only after mysql is running?

I have a java program which uses Mysql database(using mysql which comes with Xaamp). I ve written batch script to start xaamp and run java program. How can i make sure that my java program is executed ...
0
votes
1answer
76 views

Directing output of file to txt file using cmd prompt script and java program

Hey I know there are other questions like this but I am puzzled as to how I can do this the way I want. I want to run my program that basically does something with the given input value then outputs ...
0
votes
1answer
72 views

Expand wildcard in program's arguments

I have batch file which attempts to launch a java application: java -jar myProgram*.jar I would like the batch file to evaluate the wildcard * in order to find the program regardless of version ...
0
votes
1answer
49 views

Pipe Java output to calling script

My goal is to run a CGI on apache webserver. My CGI is written in Java. I'm using a batch file (later could be a perl script) that kicks off the java CGI that does all the business. The batch file ...
0
votes
1answer
58 views

pausing a batch file while waiting for java to finish

I need to run a two java programs from a batch script. I need to wait for the first java program to finish running before the second one starts. Is there a way to do this? I'm on a windows machine and ...
0
votes
0answers
133 views

From JAVA to RETURN in Stored Procedure SQL Server 2008 r2

I've to send an Integer in my Java project to the return of a Stored Procedure in SQL Server. Weird! Well, I did a Java project. Everything is working fine. I'd export him to a JAR, and made a batch ...
0
votes
1answer
132 views

java.text.ParseException: Unparseable date: “20-Mar-2013” jar executed through batch from php

I am executing a batch file from php which executes java jar file. when i run the command normally it runs fine but when i execute it through php. it gives the above error. can any one help? Java: ...
0
votes
2answers
57 views

How can you tell if JAVA_HOME contains a JDK in a Windows batch file?

Is it possible to tell if a JAVA_HOME system environment variable contains a JDK within a Windows batch file?
0
votes
3answers
164 views

Windows batch file - check if JAVA_HOME contains java 7

Is there a way to determine in a windows batch file if a JAVA_HOME environment system variable contains Java 7?
-1
votes
3answers
92 views

How to send Emails from a batch program or java

I am trying to make a antiviruse backup system, i already know its bad idea to make antiviruse stuff from java and batch but i want to learn more of java through this project, and i want the program ...
0
votes
1answer
82 views

how to run java file using javascript and batchscript

i want to run java file using javascript. therefore took the help of batch file. when tried following code it is giving, page cannot be displayed... can you please help as early as possible... ...
0
votes
1answer
55 views

An application to get Userinput and to run commands background in windows

I want to create one standalone executable file which accepts some user input and it should use those inputs as arguments to run a command at CMD as background process. For GUI i thought of using ...
0
votes
0answers
48 views

How can I turn on / off the NIC/Network card by Java or .bat? [duplicate]

I'm trying to turn off my network card for whatever purpose, and later I want to turn it on. Is it possible? How can I do it using Java or a .bat or .vb?
1
vote
2answers
353 views

Java Web Start Application works with Java 6, but only if Java 7 is completely uninstalled. (Win7)

We are using a web-based KVM switch which opens up a Java Web Start launcher in order to boot the console. When I run it with Java 6, update 43, everything works great. Then, I install Java 7 ...
-2
votes
1answer
51 views

Passing a string from config properties file into bat file

Need help. I have one config properties file which has a string. I need to pass this string into a Batch file. What is the procedure to do so? Thanks in advance!
0
votes
0answers
49 views

csv file integration design pattern

I m looking for a design pattern to integrate CSV or others files with other extensions into a database. What i m looking for is an interesting document to explain the principle in a generic and ...
1
vote
2answers
261 views

Windows bat file determining if Java install is 32 bit or 64 bit?

Is it possible using a Windows batch file to determine if the version of Java (assuming 7) installed is the 32 bit version or the 64 bit version?
-4
votes
1answer
54 views

Server.bat run from java [closed]

I am running a bat file from java application using the exec() function, this works well The problem is that the bat file is a server (so it will wait for client to connect) and it takes time to be ...
0
votes
4answers
216 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 ...
0
votes
2answers
147 views

Java-Execute bat file when clicking button, before closing the Java window

I have a button, what I want is to click the button to execute a bat file background, which will generate a file in a folder, and the Java window remains there. But in my code, I need to close the ...
-1
votes
1answer
145 views

How to execute a batch file on a remote system

I have a java web app running on a server. I will click a button on the UI on the server It should invoke the batch file on the client machine and execute it on the client. Please suggest me how to go ...
2
votes
0answers
334 views

Get exit code from a java application in batch file

I'm currently making an effort to create test cases for one of our java applications. In my code, my java application calls a batch file, which in turn starts a separate java process, that returns an ...
1
vote
3answers
95 views

args in '.bat' file contain some spaces, how could I get the args correctly?

Stat command in cmd: start.bat -arg1 -ar g2 -arg3 How can I get the second arg? The string 'ar g2' contain one space . I need get the args(may contain space character) from bat file, then I will ...
0
votes
2answers
146 views

how to leave cmd open after batch file executes

I am current'y taking a Java course and because of security reasons it won't let us set environment variables for the Java compiler. What we have to do all the time is open cmd and then put set ...
0
votes
2answers
101 views

How to pass the -D additional parameter while starting tomcat?

I have a maven project, after running command mvn install all project as well as module compile and copied to local repository successfully. But now I want to run the generated web application in ...
0
votes
1answer
73 views

Wait for jar run from batch to finish? [duplicate]

I start a jar file by batch and want to wait for that tool to finish before I continue with the next batch command. How could I do this? java -jar "tool.jar" parameter /wait Would this wait for the ...
0
votes
2answers
257 views

Why does an Ant Exec task return code not match ERRORLEVEL value?

I have a batch script called from Ant exec task to compile some CSharp code. The batch script is structured in the following way msbuild.exe %ARGS% echo %ERRORLEVEL% Now when the task is run in ...
2
votes
4answers
295 views

java class path issue with properties file

I have a batch file to set class path before calling the java main method, see code below SET CLASSPATH=%CLASSPATH%;libs/xyz1.jar SET CLASSPATH=%CLASSPATH%;libs/xyz2.jar SET ...
0
votes
1answer
68 views

How to write batch script for installation of atg in linux?

How to write script for skipping the "next" buttons, include path for files in batch file? Is there any way to do it other than using AUTOIT or similar tools, which registers key strokes while ...

1 2 3 4 5 9