简体   繁体   English

为什么在Windows任务管理器中将Eclipse视为“ javaw.exe”?

[英]Why do I see Eclipse as 'javaw.exe' in Windows task manager?

抱歉,这太天真了,但是不应该像eclipse.exe这样吗?

The links provided in the comments are quite informative, but if you still aren't able to understand why Eclipse shows as javaw.exe in the Task Manager, then refer to this answer . 注释中提供的链接非常有用,但是如果您仍然无法理解为什么Eclipse在任务管理器中显示为javaw.exe,请参考此答案 (Excerpt below) (以下摘录)

javaw : (java windowed) Application executor not associated with console. javaw :(与Java窗口化的)与控制台无关的应用程序执行程序。 So no display of output/errors. 因此,不会显示输出/错误。 Can be used to silently push the output/errors to text files. 可用于将输出/错误以静默方式推送到文本文件。 Mostly used to launch GUI based applications. 通常用于启动基于GUI的应用程序。

Eclipse is a GUI based development tool and hence the process associated with Eclipse reads javaw.exe in Task Manager. Eclipse是基​​于GUI的开发工具,因此与Eclipse相关的过程在任务管理器中读取javaw.exe。

如果需要将其作为eclipse.exe运行,则可以在eclipse配置文件中传递以下参数: -vm <your java installation folder>\\bin\\client\\jvm.dll

Eclipse is a program, which runs upon Java Virtual Machine. Eclipse是一个程序,可以在Java虚拟机上运行。 javaw.exe is a process, corresponding to JVM. javaw.exe是一个进程,对应于JVM。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM