ikvmnet / ikvm

A Java Virtual Machine and Bytecode-to-IL Converter for .NET
Other
1.24k stars 116 forks source link

java.lang.NoSuchMethodError: java.nio.FloatBuffer.flip()Ljava.nio.FloatBuffer #365

Closed Zegute closed 1 year ago

Zegute commented 1 year ago

it return Unhandled exception. java.lang.NoSuchMethodError: java.nio.FloatBuffer.flip()Ljava.nio.FloatBuffer; when method flip called

wasabii commented 1 year ago

Going to need more information about this. There's no indication about what software is being used or anything. And as far as I can tell JDK8 doesn't have a method named flip() on FloatBuffer that returns a FloatBuffer. There is a method named flip() on Buffer which returns a Buffer...

wasabii commented 1 year ago

Ahh. So, there is a ()Ljava.nio.FloatBuffer version of flip() in JDK9. Guessing you're trying to run a JDK9 JAR file. We do not yet support anything beyond JDK8.

Going to close this for now.

120