The type List is not generic; it cannot be parameterized with arguments [HTTPClient]

前端 未结 4 1810
清歌不尽
清歌不尽 2020-12-08 02:08
import java.awt.List;
import java.awt.image.BufferedImage;
import java.io.BufferedReader;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.I         


        
4条回答
  •  南方客
    南方客 (楼主)
    2020-12-08 02:19

    Adding java.util.list will resolve your problem because List interface which you are trying to use is part of java.util.list package.

提交回复
热议问题