The type List is not generic; it cannot …

weixin_34377065發表於2010-05-21

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;

解決

相關文章