Running Java jar file from excel

chetanojha

New Member
Joined
May 3, 2016
Messages
20
Hi,

I have an excel column in which I have created java command (using formulas etc based on other columns).
There are more than one cells in the columns with respective Java command.
I want to run them in loop so that when Java command execute it will create some files for me.

I just want to find out how to run the command in loop based on the values in the cell. The cell in the excel look like below:

Name of the column is "Java Command"

Java Command
java -jar ABC.jar -t oca -p -o "LONDON" -cpu 02 -u ROLLNUMBER1 -x -z
java -jar ABC.jar -t oca -p -o "AMSTERDAM" -cpu 02 -u ROLLNUMBER2 -x -z
java -jar ABC.jar -t oca -p -o "NEWYORK" -cpu 02 -u ROLLNUMBER3 -x -z
java -jar ABC.jar -t oca -p -o "EDINBURGH" -cpu 02 -u ROLLNUMBER4 -x -z

<tbody>
</tbody>

Now on this very forum I found a code to run the java program from the excel. But i am not not sure how to run it in the loop:

Code:
Private Sub CommandButton1_Click()
    ChDir ThisWorkbook.Path
    Shell "java -jar ABC.jar -t oca -p -o "LONDON" -cpu 02  -u ROLLNUMBER1 -x -z"
End Sub

File ABC.jar is present in the same directory as this excel sheet.


Can anybody advice how can i run all the above Java command in loop at the click of the button?

Thanks
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Try this. The Shell command line might need to specify the full path to ABC.jar, so the first Replace does that. Similarly, you might need the second Replace to specify the full path to java(.exe).
Code:
Private Sub CommandButton1_Click()
    Dim cell As Range, command As String
    For Each cell In Range("A2", Cells(Rows.Count, "A").End(xlUp))
        command = Replace(cell.Value, "ABC.jar", ThisWorkbook.Path & "\ABC.jar")
        'command = Replace(command, "java", "C:\path\to\java")
        Shell command, vbNormalFocus
    Next
End Sub
Shell runs each command without waiting for it to finish and immediately runs the next command. If you want each command to run and wait until it finishes before running the next command then use the Wscript.Shell Run method with its WaitOnReturn argument True, instead of the Shell function.
 
Upvote 0
Try this. The Shell command line might need to specify the full path to ABC.jar, so the first Replace does that. Similarly, you might need the second Replace to specify the full path to java(.exe).
Code:
Private Sub CommandButton1_Click()
    Dim cell As Range, command As String
    For Each cell In Range("A2", Cells(Rows.Count, "A").End(xlUp))
        command = Replace(cell.Value, "ABC.jar", ThisWorkbook.Path & "\ABC.jar")
        'command = Replace(command, "java", "C:\path\to\java")
        Shell command, vbNormalFocus
    Next
End Sub
Shell runs each command without waiting for it to finish and immediately runs the next command. If you want each command to run and wait until it finishes before running the next command then use the Wscript.Shell Run method with its WaitOnReturn argument True, instead of the Shell function.

Hi John... This has worked brilliantly.. Thanks a lot.
 
Upvote 0
Try this. The Shell command line might need to specify the full path to ABC.jar, so the first Replace does that. Similarly, you might need the second Replace to specify the full path to java(.exe).
Code:
Private Sub CommandButton1_Click()
    Dim cell As Range, command As String
    For Each cell In Range("A2", Cells(Rows.Count, "A").End(xlUp))
        command = Replace(cell.Value, "ABC.jar", ThisWorkbook.Path & "\ABC.jar")
        'command = Replace(command, "java", "C:\path\to\java")
        Shell command, vbNormalFocus
    Next
End Sub
Shell runs each command without waiting for it to finish and immediately runs the next command. If you want each command to run and wait until it finishes before running the next command then use the Wscript.Shell Run method with its WaitOnReturn argument True, instead of the Shell function.


Can I add one more column to the table as a flag i.e. Y or N. And run the Java command only when the value of the cell is Y?


Run Command?
Java Command
Y
java -jar ABC.jar -t oca -p -o "LONDON" -cpu 02 -u ROLLNUMBER1 -x -z
Y
java -jar ABC.jar -t oca -p -o "AMSTERDAM" -cpu 02 -u ROLLNUMBER2 -x -z
Y
java -jar ABC.jar -t oca -p -o "NEWYORK" -cpu 02 -u ROLLNUMBER3 -x -z
N
java -jar ABC.jar -t oca -p -o "EDINBURGH" -cpu 02 -u ROLLNUMBER4 -x -z

<tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,559
Members
449,089
Latest member
Motoracer88

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top