我添加了'squareup.okhttp'软件包并出现上述错误。真的不知道是什么意思。
以下是eclipse在问题选项卡中提供的代码和错误。
@Override
public Source source(File file) throws FileNotFoundException {
return Okio.source(file);
}
java.nio.file.OpenOption cannot be resolved. It is indirectly referenced from required .class files FileSystem.java /myapp/src/com/squareup/okhttp/internal/io
我使用的是JDK 1.6。在我的代码中添加了okhttp2.5.0.jar的源代码而不是jar。
请帮我解决这个问题。
答案 0 :(得分:4)
我正在使用JDK 1.6
java.nio.file
包仅在Java 7中引入。