java 类型List不是泛型;不能用参数[HTTPClient]对其进行参数化

2hh7jdfx  于 2024-01-05  发布在  Java
关注(0)|答案(4)|浏览(269)
  1. import java.awt.List;
  2. import java.awt.image.BufferedImage;
  3. import java.io.BufferedReader;
  4. import java.io.ByteArrayOutputStream;
  5. import java.io.File;
  6. import java.io.InputStreamReader;
  7. import java.util.ArrayList;
  8. import javax.imageio.ImageIO;
  9. import org.apache.commons.codec.binary.Base64;
  10. import org.apache.http.HttpResponse;
  11. import org.apache.http.client.HttpClient;
  12. import org.apache.http.client.entity.UrlEncodedFormEntity;
  13. import org.apache.http.client.methods.HttpPost;
  14. import org.apache.http.impl.client.DefaultHttpClient;
  15. import org.apache.http.message.BasicNameValuePair;
  16. import org.omg.DynamicAny.NameValuePair;
  17. public class Upload {
  18. public static void main (String[] args) {
  19. System.out.println(Imgur("C:\\Users\\username\\Desktop\\image.jpg", "clientID"));
  20. }
  21. public static String Imgur (String imageDir, String clientID) {
  22. //create needed strings
  23. String address = "https://api.imgur.com/3/image";
  24. //Create HTTPClient and post
  25. HttpClient client = new DefaultHttpClient();
  26. HttpPost post = new HttpPost(address);
  27. //create base64 image
  28. BufferedImage image = null;
  29. File file = new File(imageDir);
  30. try {
  31. //read image
  32. image = ImageIO.read(file);
  33. ByteArrayOutputStream byteArray = new ByteArrayOutputStream();
  34. ImageIO.write(image, "png", byteArray);
  35. byte[] byteImage = byteArray.toByteArray();
  36. String dataImage = new Base64().encodeAsString(byteImage);
  37. //add header
  38. post.addHeader("Authorization", "Client-ID" + clientID);
  39. //add image
  40. List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);
  41. nameValuePairs.add(new BasicNameValuePair("image", dataImage));
  42. post.setEntity(new UrlEncodedFormEntity(nameValuePairs));
  43. //execute
  44. HttpResponse response = client.execute(post);
  45. //read response
  46. BufferedReader rd = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
  47. String all = null;
  48. //loop through response
  49. while (rd.readLine() != null) {
  50. all = all + " : " + rd.readLine();
  51. }
  52. return all;
  53. }
  54. catch (Exception e){
  55. return "error: " + e.toString();
  56. }
  57. }
  58. }

字符串
我从uploading to Imgur v3 using Java https errors得到了这个代码,我在第50行看到一个错误,“List”告诉我
类型List不是泛型;不能使用参数对其进行参数化
我能做些什么来解决这个问题?
我正在使用http://hc.apache.org/httpclient-3.x/,并希望使用他们的v3 API上传图像到imgur。
编辑:修改导入后,我现在得到这些错误。
这就解决了,但给予我两个更多的错误。

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


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

第一个月
构造函数UrlEncodedFormEntity(List)未定义

c8ib6hqw

c8ib6hqw1#

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

  1. import java.awt.List;

字符串
它应该是:

  1. import java.util.List;


问题是awt和Java的util包都提供了一个名为List的类。前者是一个显示元素,后者是一个用于集合的泛型类型。此外,java.util.ArrayList扩展了java.util.List,* 而不是 * java.awt.List,所以如果不是泛型,它仍然是一个问题。

编辑:(解决OP给出的进一步问题)作为对您评论的回答,似乎还有一个微妙的进口问题。

  1. import org.omg.DynamicAny.NameValuePair;


  1. import org.apache.http.NameValuePair


nameValuePairs现在使用正确的泛型类型参数,new UrlEncodedFormEntity的泛型参数List<? extends NameValuePair>变得有效,因为 your NameValuePair现在与 their NameValuePair相同。之前,org.omg.DynamicAny.NameValuePair没有扩展org.apache.http.NameValuePair,并且缩短的类型名称NameValuePair在您的文件中评估为org.omg...,但在代码中是org.apache...

展开查看全部
f4t66c6m

f4t66c6m2#

尝试导入

  1. java.util.List;

字符串
而不是

  1. java.awt.List;

e5nszbig

e5nszbig3#

添加java.util.list将解决您的问题,因为您尝试使用的List接口是java.util.list包的一部分。

1hdlvixo

1hdlvixo4#

我得到了同样的错误,但当我这样做,它解决了这个问题。
而不是这样写:

  1. List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);

字符串
使用下面的一个:

  1. ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);

相关问题