jawaw: command not found

The javaw utility is not available or needed on Linux. Just use java instead.

Explanation:

  • on Windows, the difference between java and javaw is that java launches a new Windows console and javaw doesn't.

  • on Linux, the java command does not launch a new console, and hence there is no need for a javaw variant.

原文地址:https://www.cnblogs.com/emanlee/p/13932322.html