Here is my batch script to execute a java code-
@echo off
@setlocal
set JARS=log4j.jar;commons-logging-1.0.4.jar
set abc="JAVA_HOME\bin\java" -cp %JARS%; "C:\Documents and settings\Administrator\Desktop\Temp" Test
echo %abc%
%abc%
And i get this error-
The system cannot find the path specified.
I have copied the compiled class file in the same location. But to be on a safer side i've provided the path of the class file above. Am I going wrong somewhere?