objc[8715]: Class JavaLaunchHelper is implemented in both....

在Mac上,升级IntelliJ Idea 2017.01后,运行的时候出现了一个红色的警告:

objc[8715]: Class JavaLaunchHelper is implemented in both /Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/bin/java (0x102c804c0) and /Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/libinstrument.dylib (0x102d5c4e0). One of the two will be used. Which one is undefined.

解决方法:

在idea中,进行修改idea.properties

打开idea --> 工具栏Help --> Edit Custom Properties...

添加一下内容

#custom IntelliJ IDEA properties
idea_rt
idea.no.launcher=true

重启idea就可以了

标签: JavaLaunchHelper IntellJ Idea

上一篇: 使用Kotlin来开发Android,这些优缺点要考虑下一篇: 没有了

本文地址:https://www.niwoxuexi.com/blog/kotlin/article/232.html

版权声明:本篇文章,如非注明,皆为博主 kotlin 原创。转载需注明本文链接并保证链接可用。

时间: 2024-08-29 01:41:53

objc[8715]: Class JavaLaunchHelper is implemented in both....的相关文章

InteliJ Idea 2017.1 for Mac 版 objc[4163]: Class JavaLaunchHelper is implemented in both XXX提示

You can find all the details here: IDEA-170117"objc: Class JavaLaunchHelper is implemented in both ..." warning in Run consoles It's the old bug in Javaon Mac that got triggered by the Java Agent being used by the IDE when starting the app. This

jdk 1.8.0_131 Class JavaLaunchHelper is implemented

错误提示:objc[49447]: Class JavaLaunchHelper is implemented in both /Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/bin/java (0x10b3604c0) and /Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home/jre/lib/libinstrument.dylib (

mac android studio 编译时报Class JavaLaunchHelper is implemented in both

Class JavaLaunchHelper is implemented in both /Library/Java/JavaVirtualMachines/jdk1.8.0_25.jdk/Contents/Home/bin/java and /Library/Java/JavaVirtualMachines/jdk1.8.0_25.jdk/Contents/Home/jre/lib/libinstrument.dylib. One of the two will be used. Which

objc[322] Class _NSSwiftEnumeratorBase is implemented in both- 问题解决办法

objc[322]: Class _NSSwiftEnumeratorBase is implemented in both "MyAppFilePath.app"/Frameworks/libswift_stdlib_core.dylib and "MyAppFilePath.app"/Frameworks/libswiftCore.dylib. One of the two will be used. Which one is undefined. 在真机测试时

IntelliJ IDEA提示:Class JavaLaunchHelper is implemented in both的错误解决

这个错误是Mac下特有的,并且据说是一个老Bug,不影响使用. 修复方法: Help->Edit Custom Properties,没有这个properties文件的话,IDEA会提示创建,然后在里面加上idea.no.launcher=true 重启即可. 参考: https://www.zhihu.com/question/56283626 http://blog.csdn.net/loongshawn/article/details/65629180 http://blog.csdn.n

mac 上运行cassandra出现的java.net.MalformedURLException: Local host name unknown: java.net.UnknownHostException: : : unknown error错误解决方法

运行: ./bin/cassandra 得到输出结果: objc[1881]: Class JavaLaunchHelper is implemented in both /Library/Java/JavaVirtualMachines/jdk1.8.0_25.jdk/Contents/Home/bin/java and /Library/Java/JavaVirtualMachines/jdk1.8.0_25.jdk/Contents/Home/jre/lib/libinstrument.d

mac 下 idea创建开发环境

1.下载idea 2.破解 http://xclient.info/a/f0b9738a-36fd-8a97-a966-0d3db497092d.html?_=28224c24c5d048ba73bf06b15e2a6668 3.安装插件 maven(17.1必须要自己安装,否则不能运行) 4.创建spring-boot项目 5.编译运行 6.mac下 idea报错(错误本身不影响业务) objc[10012]: Class JavaLaunchHelper is implemented in

MapReduce程序之combiner规约

[toc] MapReduce程序之combiner规约 前言 前面的wordcount程序,shuffle阶段的数据都是<hello, [1, 1, 1]>这种类型的(可以查看程序的输出),也就是说,交给reduce处理时就是这种类型的数据,这会带来一个问题,什么问题呢?就是网络传输问题,对于[1, 1, 1]这种数据,完全可以在本地就先完成规约,即将相当于在本地做一次reduce,从代码的角度去分析,其实也是一次reduce的操作,只是这个过程是在shuffle的时候就完成的. 程序代码

java-appium-527操作

https://www.w3.org/TR/webdriver/#list-of-endpoints 针对元素进行操作 click() sendKeys() clear() 清空 findElement() 二次定位,用的少 getAtttibute() 获取属性 getLocation()获取X Y 是否展示isDisplayed() public class XueqiuDemo { private AndroidDriver driver; @Before public void setU