Alison Gavin
Alison Gavin

Reputation: 23

java.lang.NoSuchMethodError: java.io.File.toPath()

There was a problem when I used the Stream-upload plugin to upload file .Questions are as follows:

java.lang.NoSuchMethodError: java.io.File.toPath()Ljava/nio/file/Path;

environment: jdk 1.7 + tomcat 6.0 + MyExclipse

enter image description here

enter image description here

Upvotes: 2

Views: 2912

Answers (1)

Mahesh Khond
Mahesh Khond

Reputation: 1297

toPath method requires Java 7. Make sure you are using the same version of Java across the machine.

Upvotes: 2

Related Questions