jsp页面导入时出错
我想使用 Json 执行一些测试。我正在使用谷歌应用程序引擎进行开发。我想知道如何导入 json lib 以及如何在 jsp 页面中导入。 到目前为止我所做的工作可以在图片中看到
我不确定我是否已添加 jar 文件无论正确与否,它都标有红色。 谢谢
i want to perform some test by using Json . I am using google app engine for development . I want to know how to import json lib and how i can import in jsp page .
The work i have done so far can be seen in picture
i am not sure that i have added jar file correctly or not it is marked with red .
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
哦,对了,Gson 是 Google JSON 库 - 您需要将其导入 JSP 中。例如,确保它位于您项目的构建路径上
Oh right Gson is the Google JSON library - you'll need to import it in your JSP. Make sure it's on the Build Path for your project for example
您还需要在 jsp 上导入它们,就像导入
List
另请参阅
You need to import them on jsp as well, the same way you have imported
List
See Also