【发布时间】:2011-07-03 11:12:54
【问题描述】:
如何确定我 (Windows 7) PC 上的特定 Eclipse 实例是 32 位还是 64 位版本?
我已经检查了“关于”屏幕和可以从那里调用的迷宫般的对话框,但我没有找到任何线索。
另外,在 Windows 资源管理器中右键单击 eclipse.exe 并打开属性对话框没有给出任何提示。
【问题讨论】:
标签: eclipse windows-7 32bit-64bit
如何确定我 (Windows 7) PC 上的特定 Eclipse 实例是 32 位还是 64 位版本?
我已经检查了“关于”屏幕和可以从那里调用的迷宫般的对话框,但我没有找到任何线索。
另外,在 Windows 资源管理器中右键单击 eclipse.exe 并打开属性对话框没有给出任何提示。
【问题讨论】:
标签: eclipse windows-7 32bit-64bit
转到 Eclipse 基础文件夹 → 打开 eclipse.ini → 您将在第 4 行找到以下行:
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20150204-1316 plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.200.v20120913-144807
如您所见,第 1 行是 64 位 Eclipse。它包含 x86_64,第 2 行是 32 位 Eclipse。它包含 x_86。
对于 32 位 Eclipse,只有 x86 存在,对于 64 位 Eclipse,x86_64 将存在。
【讨论】:
在安装目录打开eclipse.ini,观察带文字的那一行:
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.0.200.v20090519 那么它是 64 位。
如果是 plugins/org.eclipse.equinox.launcher.win32.win32.x86_32_1.0.200.v20090519 那么它是 32强>位。
【讨论】:
点击 Ctrl+Alt+Del 打开 Windows 任务管理器并切换到进程选项卡。
32 位程序应标有*32。
【讨论】:
帮助 -> 关于 Eclipse -> 安装详细信息 -> 选项卡配置
查找-arch,在它下方您会看到x86_64(表示64 位)或x86(表示32 位)。
【讨论】:
在 Linux 中,在 Eclipse 可执行文件上运行 file,如下所示:
$ file /usr/bin/eclipse
eclipse: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.4.0, not stripped
【讨论】: