Have you set the PATH and JAVA_HOME environment variables in you .bash_profile in your home directory?
Code:
PATH=$PATH:/usr/local/java/bin
JAVA_HOME=/usr/local/java
export PATH
export JAVA_HOME
where you have installed java to /usr/local/java.
This means that these two environment variables are set each time you log in.
I hope this helps
--Ian