在eclipse中无法将jsonarray导入jsp

时间:2016-11-29 01:00:19

标签: java json jsp

我想在jsp中使用JSONArray。我已经像这样导入了这个库

  

我还下载了java-json jar并粘贴到WEB-INF lib中,请看我的windows快照。

<%@ page import="java.utii.List" %> 
<%@ page import org.json.JSONArray %> 
<%@page import="java.util.ArrayList"%>
<% 
List<String> exampleList = new ArrayList<>();
exampleList.add("Apple");
exampleList.add("Orange");
exampleList.add("Lemon");
JSONArray fruitList = new JSONArray();
fruitList.addAll(exampleList);
%> 

snapshot snapshot2

但编译器仍抱怨Jsonarray无法解析为某种类型。可能有什么不对?谢谢。

2 个答案:

答案 0 :(得分:0)

问题在于您写道:

<%@ page import org.json.JSONArray %> 

但你应该写:

<%@ page import="org.json.JSONArray" %> 

答案 1 :(得分:-3)

你应该检查eclipse设置,确保这个lib已经在classpath中。