0

Is it possible to run a java application without JDK installed on Windows? Maybe there is a way to wrap the libraries inside it

  • 2
    Might want to look at this: http://stackoverflow.com/questions/2011664/compiling-a-java-program-into-an-exe – yamafontes Mar 07 '14 at 17:46

2 Answers2

0

Without a JDK yes, but without a JRE no - assuming the distributed Java application is a .jar file.

user_loser
  • 881
  • 1
  • 13
  • 27
0

The client machine need to have the JRE installed.

There are some ways to embed the JRE and JVM inside your app with avian

Take a look in another thread as well:

Packaging Java apps for the Windows/Linux desktop

Embed a JRE in a Windows executable?

Community
  • 1
  • 1
Eduardo Briguenti Vieira
  • 4,351
  • 3
  • 37
  • 49