如何查看eclipse是32位还是64位

来源:互联网 发布:常青藤软件64位 编辑:程序博客网 时间:2024/06/05 16:58

原:http://blog.csdn.net/testcs_dn/article/details/50849932

如何查看eclipse是32位还是64位?

1、如果是在官网下载的,看压缩包名字就可以看出来,只带有win32字样的是32位,带有win32-x86_64字样的是64位的。

如果已经安装了很多,安装包已经找不到了怎么办呢?

2、找到eclipse安装目录的eclipse.ini文件打开,在launcher.library项下,如果是win32.x86则是32位的,如果是win32.x86_64则是64位的。

[plain] view plain copy
  1. -startup  
  2. plugins/org.eclipse.equinox.launcher_1.3.0.v20140415-2008.jar  
  3. --launcher.library  
  4. plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20150204-1316  
  5. -product  
  6. org.eclipse.epp.package.jee.product  
  7. --launcher.defaultAction  
  8. openFile  
  9. --launcher.XXMaxPermSize  
  10. 256M  
  11. -showsplash  
  12. org.eclipse.platform  
  13. --launcher.XXMaxPermSize  
  14. 256m  
  15. --launcher.defaultAction  
  16. openFile  
  17. --launcher.appendVmargs  
  18. -vmargs  
  19. -Dosgi.requiredJavaVersion=1.6  
  20. -Xms40m  
  21. -Xmx512m  
原创粉丝点击