This link you posted has a more or less working answer. I had the same problem and I found that at the same time as this question. I will post the answer here, along with what I had to do to make it work.
Answer:
1. Extract "jdev_suite_121200_win64.exe" file into C:\jdev_suite_121200_win64 2. In cmd go to C:\jdev_suite_121200_win64\Disk1 3. Execute follow command: C:\PROGRA~1\Java\jdk1.6.0_31\bin\java.exe (..your JDK..) -jar install/modules/ora-launcher.jar DISKCNT=1 JRE_COMPONENT=oracle.jdk,oracle.jre
This answer, for some reason, really failed every time I tried to install jdk java.exe using Java 7, and was incredibly frustrating. However, as soon as I launched it using java java.exe for Java 6.0_38, everything went fine. The installer will tell you that the Java check failed because it needs Java 7, but just ignore it and it installs fine.
Basically, follow the above instructions and use Java 6 jdk java.exe. My team, which ultimately worked, looked like this:
C:\"Program Files (x86)"\Java\jdk1.6.0_38\bin\java.exe -jar install/modules/ora-launcher.jar DISKCNT=1 JRE_COMPONENT=oracle.jdk,oracle.jre
source share