The type List is not generic; it cannot be parameterized with arguments<QueryResult>

这是在ArcGIS Server ADF中加一个QueryTask时遇到的

编译时发现了这个错误,结果发现了

import java.awt.List;

这里竟然用了 awt的 List

修改为

import java.util.List;

解决

相关文章:

  • 2021-07-04
  • 2021-09-23
  • 2022-12-23
  • 2021-07-04
  • 2021-04-18
  • 2022-01-13
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-10-26
  • 2022-12-23
  • 2021-10-19
  • 2021-04-04
  • 2021-06-02
相关资源
相似解决方案