5

我正在使用 OkHttp 库来处理多部分数据,一切都很好,我没有任何错误,但是当我编译程序时,它给了我错误

错误:(172, 40) 错误:无法访问 okio.ByteString 的 ByteString 类文件未找到

错误发生在这里RequestBody.create(MEDIA_TYPE_JPG, new File(data.getFileParam())))

这是实现多部分请求的方法的完整代码

public static String makeRequest(RequestConstructor data, String a, String b) {
    final MediaType MEDIA_TYPE_JPG = MediaType.parse("image/jpg");
    try {
        OkHttpClient client = new OkHttpClient();

        Log.d("test",data.getFileParam());

        RequestBody requestBody = new MultipartBody.Builder()
                .setType(MultipartBody.FORM)
                .addFormDataPart("bunting", data.getParam("bunting"))
                .addFormDataPart("dangler", data.getParam("dangler"))
                .addFormDataPart("poster", data.getParam("poster"))
                .addFormDataPart("tearPad", data.getParam("tearPad"))
                .addFormDataPart("leafLet", data.getParam("leafLet"))
                .addFormDataPart("outlet_category", "")
                .addFormDataPart("dealerName", data.getParam("dealerName"))
                .addFormDataPart("brouchers", data.getParam("brouchers"))
                .addFormDataPart("wobblers", data.getParam("wobblers"))
                .addFormDataPart("tentCard", data.getParam("tentCard"))
                .addFormDataPart("others", data.getParam("others"))
                .addFormDataPart("photo", "1.jpg",
                        RequestBody.create(MEDIA_TYPE_JPG, new File(data.getFileParam())))
                .build();

        Request request = new Request.Builder()
                .url(data.getUrl())
                .post(requestBody)
                .build();

        Response response = client.newCall(request).execute();
        if (!response.isSuccessful()) throw new IOException("Unexpected code " + response);
        Log.d("From OkHTTP Response", response.toString());
        System.out.println(response.body().string());
    } catch (IOException e) {
        e.printStackTrace();
    }

    return null;
}

我没有任何 okio 类的导入,所以我尝试添加 manully fun android studio show syntax errorcannot resolve symbol okio

4

3 回答 3

14

这是一个单独的包,我们需要自己包含。名字是:奥基奥。

你可以在这里找到最新的 jar 或 java 文件:https ://github.com/square/okio

于 2016-03-04T11:11:29.933 回答
0

嗨,您可以将 libs okio添加到您的项目中。

下载最新版本

于 2017-02-18T13:30:47.403 回答
0

如果添加两个库,您可以解决它。您可以查看 okhttp3 依赖项以检查您需要哪些库,在本例中为 okio。

    <dependency>
        <groupId>com.squareup.okhttp3</groupId>
        <artifactId>okhttp</artifactId>
        <version>4.9.3</version>
    </dependency>
    <dependency>
        <groupId>com.squareup.okio</groupId>
        <artifactId>okio</artifactId>
        <version>2.8.0</version>
        <scope>compile</scope>
    </dependency>
于 2022-01-22T18:24:28.193 回答