gpt4 book ai didi

compiler-errors - OkHttp 请求在 com.squareup.okhttp 中不公开;无法从外部包访问

转载 作者:行者123 更新时间:2023-12-02 11:02:47 29 4
gpt4 key购买 nike

我试图让 OkHttp 在我的 Android Studio 项目中工作,我创建了一个类并从这里粘贴以下代码:https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/com/squareup/okhttp/recipes/ParseResponseWithGson.java

package com.my.project;

/**
* Created by me on 07/08/2015.
*/
import com.google.gson.Gson;
import com.squareup.okhttp.OkHttpClient;
import com.squareup.okhttp.Request;
import com.squareup.okhttp.Response;
import java.io.IOException;
import java.util.Map;

public final class ParseResponseWithGson {
private final OkHttpClient client = new OkHttpClient();
private final Gson gson = new Gson();

public void run() throws Exception {
Request request = new Request.Builder()
.url("https://api.github.com/gists/c2a7c39532239ff261be")
.build();
Response response = client.newCall(request).execute();
if (!response.isSuccessful()) throw new IOException("Unexpected code " + response);

Gist gist = gson.fromJson(response.body().charStream(), Gist.class);
for (Map.Entry<String, GistFile> entry : gist.files.entrySet()) {
System.out.println(entry.getKey());
System.out.println(entry.getValue().content);
}
}

static class Gist {
Map<String, GistFile> files;
}

static class GistFile {
String content;
}

public static void main(String... args) throws Exception {
new ParseResponseWithGson().run();
}
}

这是我的gradle文件:
    apply plugin: 'com.android.application'

repositories {
jcenter()
flatDir {
dirs 'prebuilt-libs'
}
}

android {
compileSdkVersion "Google Inc.:Glass Development Kit Preview:19"
buildToolsVersion "22.0.1"

defaultConfig {
applicationId "com.my.project_02"
minSdkVersion 19
targetSdkVersion 22
versionCode 2
versionName "0.2"
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.google.code.gson:gson:2.3.1'
compile 'com.squareup.okio:okio:1.5.0'
compile 'com.squareup.okhttp:okhttp:2.4.0'
compile files('libs/GlassVoice-xe22.jar')

}

但错误“错误:(8, 27) 错误:请求在 com.squareup.okhttp 中不公开;无法从外部包访问”和“错误:(9, 27) 错误:响应在 com.squareup 中不公开.okhttp; 无法从外部包访问”出现在 ParseResponseWithGson 类的代码中:
import com.squareup.okhttp.Request;
import com.squareup.okhttp.Response;

有谁知道如何解决这些错误?似乎构造函数不是公开的,但这听起来很奇怪,但是我已经复制并粘贴了代码,所以我不确定我可能做错了什么,除非以某种方式引用了错误版本的 OkHttp 和 OkIo?

最佳答案

您的类路径中可能有另一个过时的 OkHttp 版本。旧版本的请求不公开,但 2.0+ 中的请求是公开的。

尝试使用 jar tvf libs/foo.jar为您的 libs 目录中的每个 jar 找到它!

关于compiler-errors - OkHttp 请求在 com.squareup.okhttp 中不公开;无法从外部包访问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31885854/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com