okHttp使用中报Could not find method java.nio.file.Files.newOutputStreamo警告问题

来源:互联网 发布:融资型分级基金 知乎 编辑:程序博客网 时间:2024/06/06 01:21

最近在使用okHttp过程中总是报下面的警告

I/dalvikvm﹕ Could not find method com.squareup.okhttp.internal.huc.HttpURLConnectionImpl.getContentLengthLong, referenced from method com.squareup.okhttp.internal.huc.HttpsURLConnectionImpl.getContentLengthLongW/dalvikvm﹕ VFY: unable to resolve virtual method 21498: Lcom/squareup/okhttp/internal/huc/HttpURLConnectionImpl;.getContentLengthLong ()JD/dalvikvm﹕ VFY: replacing opcode 0x6e at 0x0002I/dalvikvm﹕ Could not find method com.squareup.okhttp.internal.huc.HttpURLConnectionImpl.getHeaderFieldLong, referenced from method com.squareup.okhttp.internal.huc.HttpsURLConnectionImpl.getHeaderFieldLongW/dalvikvm﹕ VFY: unable to resolve virtual method 21503: Lcom/squareup/okhttp/internal/huc/HttpURLConnectionImpl;.getHeaderFieldLong (Ljava/lang/String;J)JD/dalvikvm﹕ VFY: replacing opcode 0x6e at 0x0002W/dalvikvm﹕ VFY: unable to find class referenced in signature (Ljava/nio/file/Path;)W/dalvikvm﹕ VFY: unable to find class referenced in signature ([Ljava/nio/file/OpenOption;)I/dalvikvm﹕ Could not find method java.nio.file.Files.newOutputStream, referenced from method okio.Okio.sinkW/dalvikvm﹕ VFY: unable to resolve static method 24080: Ljava/nio/file/Files;.newOutputStream (Ljava/nio/file/Path;[Ljava/nio/file/OpenOption;)Ljava/io/OutputStream;D/dalvikvm﹕ VFY: replacing opcode 0x71 at 0x000aW/dalvikvm﹕ VFY: unable to find class referenced in signature (Ljava/nio/file/Path;)W/dalvikvm﹕ VFY: unable to find class referenced in signature ([Ljava/nio/file/OpenOption;)I/dalvikvm﹕ Could not find method java.nio.file.Files.newInputStream, referenced from method okio.Okio.sourceW/dalvikvm﹕ VFY: unable to resolve static method 24079: Ljava/nio/file/Files;.newInputStream (Ljava/nio/file/Path;[Ljava/nio/file/OpenOption;)Ljava/io/InputStream;D/dalvikvm﹕ VFY: replacing opcode 0x71 at 0x000a
查询了下发现是因为okHttp支持的一些API需要java7.0或者android M ,如果运行在低版本下okHttp就会报这些警告,直接忽略就可以了。


参考:https://github.com/square/okhttp/wiki/FAQs


0 0
原创粉丝点击