I am trying to run a JAR file that accepts 3 arguments.
This is my command-
c:\Arvind_gpd>java -jar icasae.jar c:\Arvind_gpd\inv_new <data> </data>
However I am getting this error0
< was unexpected at this time.
How do I pass the parameters "<data>" and "</data>" correctly in my invocation of the JAR file so that the execution is successful.
Enclose the arguments in double quotes.