首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网络技术 > 网络基础 >

彻底解决dwr框架的failed to read input的有关问题

2012-10-24 
彻底解决dwr框架的failed to read input的问题?????? 在使用dwr的项目中,碰到了failded to read input 问

彻底解决dwr框架的failed to read input的问题

?????? 在使用dwr的项目中,碰到了failded to read input 问题,google一下,发现都是一些修改engine.js的建议,治标不治本,修改过后还是会出现。

?

?????? 下载了dwr的源码,发现爆出failed to read input的地方居然没有将异常输出!!

?

?????? 修改了org.directwebremoting.dwrp.ParseUtil中parsePost方法,在:

throw new ServerException(Messages.getString("ParseUtil.InputReadFailed"), ex);

前增加了:ex.printStackTrace();,最后调试发现,此处爆出了:sun.io.MalformedInputException,

?

然后我把parsePost方法中:

in = new BufferedReader(new InputStreamReader(req.getInputStream()));

替换为:

in = req.getReader();

然后将org.directwebremoting.dwrp.ParseUtil的class文件拷贝到dwr.jar中,呵呵。。。居然问题解决了!!!

?

?

?

?

?

?

热点排行