Questions tagged [javaw]

The javaw tool launches a Java application. It does this by starting a Java runtime environment, loading a specified class, and invoking that class's main method.

The javaw command is identical to java, except that with javaw there is no associated console window. Use javaw when you don't want a command prompt window to appear. The javaw launcher will, however, display a dialog box with error information if a launch fails for some reason.

98 questions
-1
votes
1 answer

C# How to enable exit event on a running javaw app

I am trying to create an external launcher for an app, which I recently noticed is running in Java.. I did not immediately noticed because the program has an .exe extension and I assumed it was an executable directly running the software. Instead,…
Lethi
  • 21
  • 4
-1
votes
1 answer

java.exe is faster than javaw.exe

I've made several java software's using hibernate + Mysql/Sqlite and I have noticed a significant difference in fetch time (from database) when using both launchers. When I start my application using java.exe, of course a console is displayed but…
Mssm
  • 717
  • 11
  • 29
-1
votes
2 answers

terminated javaw error when running eclipse

im trying to connect to mysql database and manipulate the data in it but when i try to run my code it get the error, driver [java application] C:\program files\java\jre 1.8.0_111\bin\javaw.exe from what ive been reading its because its launching…
Eric Vuu
  • 47
  • 8
-1
votes
2 answers

Eclipse : JAVAW terminated

perhaps i misclicked something, and my java application won't run. i have made the following Login Form and press f12 to run my java application. import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import…
Cignitor
  • 891
  • 3
  • 16
  • 36
-1
votes
1 answer

javaw keeps restoring itself

My javaw.exe process is infinitely restoring itself launching a windows error windows saying A Java Exception has ocurred I've tried taskkill, windows task manager and they keep coming back. How do I fix this?
Maslor
  • 1,821
  • 3
  • 20
  • 44
-1
votes
1 answer

need help getting eclipse to work keep getting exit code = 13

I've been hitting with this same problem for a while now. I thought I found the problem when my JDK was a 32 bit while my eclipse was a 64 but it doesn't seem to be the only problem. I tried to download a lower version (I had the jdk v8u45, I…
dx3d
  • 19
  • 4
-1
votes
1 answer

Java crashes when calling dll function using JNA

I'm using JNA to run a dll function: Here is all the code corresponding to that manner: The Native Declarations: //how the method declared H264_Login (char *sIP, unsigned short wPort, char *sUserName, char *sPassword, LP_DEVICEINFO lpDeviceInfo,…
Muhammed Refaat
  • 8,914
  • 14
  • 83
  • 118
1 2 3 4 5 6
7