3

I want to execute a Java Network Launching Protocol (.jnlp) file on my windows 10 system. I am using OpenJDK 1.8. According tho the internet resources , I need javaws.exe executable to execute the .jnlp file. It is generally available in jre/bin directory. In my installation directory it is not available.

From where can i get javaws.exe file for OpenJDK

Jokkeri
  • 1,001
  • 1
  • 13
  • 35
Gunwant
  • 949
  • 1
  • 14
  • 29

1 Answers1

5

Java WebStart is not included in OpenJDK. See this: Openjdk and Java webstart

You can try to use other OpenJDK implementations, such as AdoptOpenJDK, which has IcedTeaWeb optionally packaged into the JDK. https://adoptopenjdk.net/

IcedTeaWeb is an alternative to original WebStart and works almost the same from user point of view when using eg. AdoptOpenJDK.

Jokkeri
  • 1,001
  • 1
  • 13
  • 35
  • 1
    javaws binaries - http://icedtea.wildebeest.org/download/icedtea-web-binaries/1.8/. For windows .msi file http://icedtea.wildebeest.org/download/icedtea-web-binaries/1.8/windows/ – Abhijeet Oct 20 '20 at 12:15