我得到了以下一组错误:
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by com.jogamp.common.os.NativeLibrary$3 (file:/C:/Users/Who/processing-3.5.3/processing-3.5.3/core/library/gluegen-rt.jar) to method java.lang.ClassLoader.findLibrary(java.lang.String)
WARNING: Please consider reporting this to the maintainers of com.jogamp.common.os.NativeLibrary$3
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release每当我试着画个素描的时候。我在IntelliJ中工作,应该导入所有必要的jars。我在main中调用PApplet.main()方法,并在settings()中设置了大小。我尝试过使用多个版本的processing。代码编译完成。有什么想法吗?
发布于 2019-11-19 19:37:21
这是JOGL/JogAmp库的一个问题(尽管这是一个警告,而不是错误),Processing的P2D和P3D模式就是基于这个库构建的。
警告是由这个库抛出的--而不是处理。作为处理用户,您无能为力来修复它。
https://stackoverflow.com/questions/58927573
复制相似问题