java.lang.IllegalStateException异常解决
在用java做导出功能的时候,前台可以正常导出数据,但是后台总是报错java.lang.IllegalStateException,我的后台代码是这样写的
sendRedirectvoid sendRedirect(String location) throws IOExceptionSends a temporary redirect response to the client using the specified redirect location URL. This method can accept relative URLs; the servlet container must convert the relative URL to an absolute URL before sending the response to the client. If the location is relative without a leading '/' the container interprets it as relative to the current request URI. If the location is relative with a leading '/' the container interprets it as relative to the servlet container root. If the response has already been committed, this method throws an IllegalStateException. After using this method, the response should be considered to be committed and should not be written to. Parameters:location - the redirect location URL Throws: IOException - If an input or output exception occurs IllegalStateException - If the response was committed or if a partial URL is given and cannot be converted into a valid URL