Skip to content

DevFaqGeneralWhatIsNetBeansExe

Antonio Vieiro edited this page Jan 25, 2018 · 1 revision

DevFaqGeneralWhatIsNetBeansExe

What is netbeans.exe, who compiles it and why is it there?

netbeans.exe is the Windows launcher for NetBeans. Basically it assembles the class path string for starting up NetBeans, passes the command line arguments, etc., and launches Java with those arguments.

The main reasons for the exe are:

  • Start NetBeans without a console window opening as well as the main window

  • Windows shell quoting is inconsistent across versions of Windows

  • On some versions of Windows, command line length is limited to a shorter length than is sometimes needed for all the command-line arguments that should be passed to java

  • Provide a thing you can double click that has the correct icon

It’s nothing terribly exciting, it’s just a small C++ app; the sources are in ide/launcher.

Up to NetBeans 6.5 there were actually two executables - nb.exe and netbeans.exe. netbeans.exe will suppress the console window (so you won’t see any logging on the command line); nb.exe will show the command line. Under the hood, netbeans.exe invokes nb.exe (so don’t rename it).

Starting with NetBeans 6.7 the following changes in the Windows launcher were introduced - WinNB67Launcher.

Apache Migration Information

The content in this page was kindly donated by Oracle Corp. to the Apache Software Foundation.

This page was exported from http://wiki.netbeans.org/DevFaqGeneralWhatIsNetBeansExe , that was last modified by NetBeans user Admin on 2009-11-06T15:45:08Z.

NOTE: This document was automatically converted to the AsciiDoc format on 2018-01-26, and needs to be reviewed.

Clone this wiki locally