列表类型不是通用的;它不能用参数参数化 [HTTPClient]

2022-08-31 16:13:53
import java.awt.List;
import java.awt.image.BufferedImage;
import java.io.BufferedReader;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.InputStreamReader;
import java.util.ArrayList;

import javax.imageio.ImageIO;

import org.apache.commons.codec.binary.Base64;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicNameValuePair;
import org.omg.DynamicAny.NameValuePair;

public class Upload {

    public static void main (String[] args) {

        System.out.println(Imgur("C:\\Users\\username\\Desktop\\image.jpg",     "clientID"));
    }

public static String Imgur (String imageDir, String clientID) {
    //create needed strings
    String address = "https://api.imgur.com/3/image";

    //Create HTTPClient and post
    HttpClient client = new DefaultHttpClient();
    HttpPost post = new HttpPost(address);

    //create base64 image
    BufferedImage image = null;
    File file = new File(imageDir);

    try {
        //read image
        image = ImageIO.read(file);
        ByteArrayOutputStream byteArray = new ByteArrayOutputStream();
        ImageIO.write(image, "png", byteArray);
        byte[] byteImage = byteArray.toByteArray();
        String dataImage = new Base64().encodeAsString(byteImage);

        //add header
        post.addHeader("Authorization", "Client-ID" + clientID);
        //add image
        List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);
        nameValuePairs.add(new BasicNameValuePair("image", dataImage));
        post.setEntity(new UrlEncodedFormEntity(nameValuePairs));

        //execute
        HttpResponse response = client.execute(post);

        //read response
        BufferedReader rd = new BufferedReader(new         InputStreamReader(response.getEntity().getContent()));
        String all = null;

        //loop through response
        while (rd.readLine() != null) {
            all = all + " : " + rd.readLine(); 
        }

        return all;

    }
    catch (Exception e){
        return "error: " + e.toString();
    }
}
}

所以我有那个代码,我从使用Java https错误上传到Imgur v3中得到它,我在第50行得到一个错误,“列表”告诉我

列表类型不是通用的;它不能用参数参数化

我能做些什么来解决这个问题?

我正在使用 http://hc.apache.org/httpclient-3.x/,并希望使用他们的v3 API将图像上传到imgur。

编辑:更改导入后,我现在收到这些错误。

这解决了这个问题,但给我两个错误。

nameValuePairs.add(new BasicNameValuePair("image", dataImage));

类型 List 中的方法 add(NameValuePair) 不适用于参数 (BasicNameValuePair)

post.setEntity(new UrlEncodedFormEntity(nameValuePairs));

构造函数 UrlEncodedFormEntity(List) 未定义


答案 1

您的导入有一个细微的错误:

import java.awt.List;

它应该是:

import java.util.List;

问题在于,两者和 Java 的 util 包都提供了一个名为 的类。前者是显示元素,后者是与集合一起使用的泛型类型。此外, 扩展 ,如果不是泛型,那仍然是一个问题。awtListjava.util.ArrayListjava.util.Listjava.awt.List

编辑:(解决OP给出的进一步问题)作为对您评论的回答,似乎存在微妙的导入问题。

import org.omg.DynamicAny.NameValuePair;

应该是

import org.apache.http.NameValuePair

nameValuePairs现在使用正确的泛型类型参数,即 的泛型参数变为有效,因为您的 NameValuePair 现在与其 NameValuePair 相同。之前,没有扩展和缩短的类型名称评估到在您的文件中,而是在他们的代码中。new UrlEncodedFormEntityList<? extends NameValuePair>org.omg.DynamicAny.NameValuePairorg.apache.http.NameValuePairNameValuePairorg.omg...org.apache...


答案 2

尝试导入

java.util.List;

而不是

java.awt.List;

推荐