vote up 0 vote down star

Hi,

export CLASSPATH=.;../somejar.jar;../mysql-connector-java-5.1.6-bin.jar
java -Xmx500m folder.subfolder../dit1/some.xml
cd ..

is the above statement for setting the classpath to already existing classpath in linux is correct or not

flag

3 Answers

vote up 4 vote down

I don't like setting CLASSPATH. CLASSPATH is a global variable and as such it is evil:

  • If you modify it in one script, suddenly some java programs will stop working.
  • If you put there the libraries for all the things which you run, and it gets cluttered.
  • You get conflicts if wo different applications use different versions of the same libray.
  • There is no performance gain as libraries in the CLASSPATH are not shared - just their name is shared.
  • If you put the dot (.) or any other relative path in the CLASSPATH that means a different thing in each place - that will cause confusion, for sure.

Therefore the prefered way is to set the classpath per each run of the jvm, for example:

java -Xmx500m -cp ".:../somejar.jar:../mysql-connector-java-5.1.6-bin.jar"    "folder.subfolder../dit1/some.xml

If it gets long the standard procedure is to wrap it in a bash or batch script to save typing.

link|flag
can u give me the entire cmd. the cmd u have specified is not working – xyz Feb 24 at 8:37
the cmd that i have used export classpath= java -Xmx500m -cp ".:../somejar.jar:../mysql-connector-java-5.1.6-bin.jar" "folder.subfolder../dit1/some.xml – xyz Feb 24 at 8:38
Throw the export part away! Just: java -Xmx500m -cp ".:../somejar.jar:../mysql-connector-java-5.1.6-bin.jar" folder.subfolder ../dit1/some.xml – boutta Feb 24 at 9:54
vote up 3 vote down

Its always advised to never destructively destroy an existing classpath unless you have a good reason.

export CLASSPATH="$CLASSPATH:foo.jar:../bar.jar"
link|flag
when i used the command echo $CLASSPATH nothing is displayed except empty line – xyz Feb 24 at 8:13
That would imply that CLASSPATH has never been set, or has been explicitly unset. – Ian McLaird Feb 24 at 21:18
vote up 2 vote down

Paths under linux are separated by colons (:), not semi-colons (;), as theatrus correctly used it in his example. I believe Java respects this convention.

Edit

Alternatively to what andy suggested, you may use the following form (which sets CLASSPATH for the duration of the command):

CLASSPATH=".:../somejar.jar:../mysql-connector-java-5.1.6-bin.jar" java -Xmx500m ...

whichever is more convenient to you.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.