下载最新eclipse,jdk路径报错
jack@jacks-MacBook-Air:~$ find . -name eclipse.ini ./eclipse/android-neon/Eclipse.app/Contents/Eclipse/eclipse.ini ./eclipse/jee-neon/Eclipse.app/Contents/Eclipse/eclipse.ini
配置eclipse.ini里面的vm参数:
-startup ../Eclipse/plugins/org.eclipse.equinox.launcher_1.3.201.v20161025-1711.jar --launcher.library /Users/jack/.p2/pool/plugins/org.eclipse.equinox.launcher.cocoa.macosx.x86_64_1.1.401.v20161122-1740 -product org.eclipse.epp.package.android.product --launcher.defaultAction openFile -showsplash org.eclipse.platform --launcher.appendVmargs -vm /Library/Java/JavaVirtualMachines/jdk1.8.0_40.jdk/Contents/Home/bin -vmargs -Dosgi.requiredJavaVersion=1.8 -XX:+UseG1GC -XX:+UseStringDeduplication -XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts -Dosgi.requiredJavaVersion=1.8 -Xms256m -Xmx1024m -Xdock:icon=../Resources/Eclipse.icns -XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts -Declipse.p2.max.threads=10 -Doomph.update.url=http://download.eclipse.org/oomph/updates/milestone/latest -Doomph.redirection.index.redirection=index:/->http://git.eclipse.org/c/oomph/org.eclipse.oomph.git/plain/setups/

低调大师中文资讯倾力打造互联网数据资讯、行业资源、电子商务、移动互联网、网络营销平台。
持续更新报道IT业界、互联网、市场资讯、驱动更新,是最及时权威的产业资讯及硬件资讯报道平台。
转载内容版权归作者及来源网站所有,本站原创内容转载请注明来源。
- 上一篇
发送短信和打电话的方法
发送短信的方法 有两种方法可以实现发送短信,其一是使用intent-startActivity,URI数据格式为"smsto:num",调用的action为Intent.ACTION_SENDTO: Uri uri = Uri.parse("smsto:5554"); Intent it =newIntent(Intent.ACTION_SENDTO, uri); it.putExtra("sms_body","你好。。"); startActivity(it); 其二是使用SmsManager: EditText num=(EditText)findViewById(R.id.num); EditText content=(EditText)findViewById(R.id.content); String mobile=num.getText().toString(); String smstext=content.getText().toString(); //获取SmsManager SmsManager sms=SmsManager.getDefault(); //如果...
- 下一篇
使用 Bundle在Activity间传递数据
使用 Intent 启动另一个 Activity Intent showNextPage_Intent=new new new new Intent(); showNextPage_Intent.setClass(UsingBundel.this ,NextPageActivity.class); startActivity(showNextPage_Intent); 在多个Activity 之间切换时候,注意每个 Activity 都应在 AndroidManifest.xml AndroidManifest.xml AndroidManifest.xml AndroidManifest.xml 中有所声明定义(如下) <application android:label="@string/app_name" android:icon="@drawable/chinazphone" > <activity android:name=".UsingBundel" android:label="@string/app_name" > <intent-filt...
相关文章
文章评论
共有0条评论来说两句吧...
文章二维码
点击排行
推荐阅读
最新文章
- Springboot2将连接池hikari替换为druid,体验最强大的数据库连接池
- SpringBoot2整合Thymeleaf,官方推荐html解决方案
- SpringBoot2整合Redis,开启缓存,提高访问速度
- CentOS7编译安装Gcc9.2.0,解决mysql等软件编译问题
- Docker使用Oracle官方镜像安装(12C,18C,19C)
- CentOS7设置SWAP分区,小内存服务器的救世主
- 设置Eclipse缩进为4个空格,增强代码规范
- CentOS7安装Docker,走上虚拟化容器引擎之路
- Docker快速安装Oracle11G,搭建oracle11g学习环境
- Hadoop3单机部署,实现最简伪集群