怎样在eclipse种打开文件路径
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎样在eclipse种打开文件路径相关的知识,希望对你有一定的参考价值。
工具:eclipse
步骤:
点击菜单栏上的Run--External Tools--External Tools Configurations...
进来这里之后,直接双击左边的Program
输入Name和Arguments
切换到Common那里,勾上External Tools,然后点击Apply,再点击Close即可。
以后,选中文件/文件夹/包名,然后点击以下图标的右边的三角符号,即可在资源管理器那里打开所选的文件/文件夹/包名的所在目录了
1. 打开eclipse根目录下的eclipse.ini配置文件,eclipse4.6默认配置如下:
-startup
plugins/org.eclipse.equinox.launcher_1.3.200.v20160318-1642.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.400.v20160518-1444
-product
org.eclipse.epp.package.jee.product
--launcher.defaultAction
openFile
-showsplash
org.eclipse.platform
--launcher.defaultAction
openFile
--launcher.appendVmargs
-vmargs
-Dosgi.requiredJavaVersion=1.8
-XX:+UseG1GC
-XX:+UseStringDeduplication
-Dosgi.requiredJavaVersion=1.8
-Xms256m
-Xmx1024m2. 在 -vmargs 前面增加 -vm参数来指定jdk路径,如jdk路径在d:\java文件夹下 :
-vm
D:\java\jdk1.8.0_91\bin\javaw.exe
3. 添加 -vm参数后的配置文件如下:
-startup
plugins/org.eclipse.equinox.launcher_1.3.200.v20160318-1642.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.400.v20160518-1444
-product
org.eclipse.epp.package.jee.product
--launcher.defaultAction
openFile
-showsplash
org.eclipse.platform
--launcher.defaultAction
openFile
--launcher.appendVmargs
-vm
D:\java\jdk1.8.0_91\bin\javaw.exe
-vmargs
-Dosgi.requiredJavaVersion=1.8
-XX:+UseG1GC
-XX:+UseStringDeduplication
-Dosgi.requiredJavaVersion=1.8
-Xms256m
-Xmx1024m4. 然后再次运行eclipse.exe便能正常启动了。
怎样查看Eclipse是32位还是64位
方法一:
1、通过配置文件查看,找到eclipse的安装路径
2、点击打开【打开文件位置】,进入到eclipse的安装目录,找到eclipse.ini文件
3、找到配置文件后,使用文本编辑工具,或记事本打开,可以看到eclipse的一些配置信息,如下图
4、如果是win32.x86 ,则是 32位的Eclipse ,如果是“win32.x86_64”,则是64位的Eclipse ,如下图:
方法二:
1、打开eclipse软件,具体依次点击【Help】-->【About Eclipse】,可见如下图
2、再点击【Installation Details】-->【Configuration】可以看到相应eclipse信息,
同样可见如果是win32.x86 ,则是 32位的Eclipse ,如果是“win32.x86_64”,则是64位的Eclipse 。
以上是关于怎样在eclipse种打开文件路径的主要内容,如果未能解决你的问题,请参考以下文章