当前位置: 代码迷 >> J2EE >> Struts2 与 JFreeChart plug in 使用有关问题
  详细解决方案

Struts2 与 JFreeChart plug in 使用有关问题

热度:266   发布时间:2016-04-22 01:51:26.0
Struts2 与 JFreeChart plug in 使用问题
由于使用了struts2 jfreechart plug in,所以action执行完以后没有返回到jsp页面上显示图片,而是直接在XXX.action中显示
在ie中能正确的显示图片,但是在firefox中,却显示不了,要求我下载xxx.action文件
总不能以后不在firefox中浏览吧

请问大家有没有什么号的解决方法? 谢谢

------解决方案--------------------
算了把代码给你写了吧.
呵呵

Java code
HttpServletResponse resp = ServletActionContext.getResponse();resp .setContentType("image/gif");///或者是image/jpeg类型
  相关解决方案