When you installed openjdk-6-jre, it should have also included its dependency openjdk-6-jre-headless, which is the package that includes the java binary.
The contents of the /usr/lib/jvm/java-6-openjdk-amd64/jre/bin directory are directly populated by the packages. If there are files missing then there is something gravely wrong with the system.
You should confirm that both packages are installed using the dpkg -l command:
dpkg -l openjdk-6-jre openjdk-6-jre-headless
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Description
+++-========================-========================-================================================================
ii openjdk-6-jre 6b24-1.11.5-0ubuntu1~12. OpenJDK Java runtime, using Hotspot JIT
ii openjdk-6-jre-headless 6b24-1.11.5-0ubuntu1~12. OpenJDK Java runtime, using Hotspot JIT (headless)
If for some reason openjdk-6-jre-headless is not installed, then install it.
There should be links for java and other executables in /usr/bin created by the openjdk-6-jre and openjdk-6-jre-headless postinst (post installation) script. If you want to examine the postinst scripts, they and other package scripts found in /var/lib/dpkg/info as .postinst.
As a handy tip, a command similar to this will list a chain of symbolic links to a non-link terminator.
f=/usr/bin/java; while [ -h $f ]; do ls -l $f; f=$(readlink $f); done; ls -l $f
/usr/lib/jvm/java-6-openjdk-amd64/bin– Peter Lawrey Dec 12 '12 at 13:44