I don't think you need Tomcat installed.
jRDC is based on Jetty which is a server itself.
java/linux_jdk-14.0.1/jdk-14.0.1/bin/java -jar java/jRDC.jar
You may try this steps:
1. Make a directory in /usr/java
2. Copy the zip file to /usr/java (if you are uploading files to /usr/java using FTP Client then skip to step 6)
sudo cp linux_jdk-14.0.1.zip /usr/java
3. Change directory
4. Unzip the file
unzip linux_jdk-14.0.1.zip
5. If the directory structure is not your liking, then move/rename as your liking
My structure look like this:
/usr/java/jdk-14.0.1/
6. Install java and javac as alternatives
sudo update-alternatives --install /usr/bin/java java /usr/java/jdk-14.0.1/bin/java 100
sudo update-alternatives --install /usr/bin/javac javac /usr/java/jdk-14.0.1/bin/javac 100
Note: 100 is priority. You can use any number
or 0 for automatic.
7. Check if you can execute java or javac
java -version
javac -version
Edit:
8. If the java version is not correct, use:
sudo update-alternatives --config java
9. Enter the number of java version you prefer
or just press enter to accept the default option (marked with plus sign +) to not making changes.