Browse Source

完善解码操作

master
youseries 6 years ago
parent
commit
43bb2a2d94
  1. 4
      ureport2-console/src/main/java/com/bstek/ureport/console/BaseServletAction.java

4
ureport2-console/src/main/java/com/bstek/ureport/console/BaseServletAction.java

@ -27,8 +27,6 @@ import javax.servlet.http.HttpServletResponse;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import com.bstek.ureport.exception.ReportComputeException;
/** /**
* @author Jacky.gao * @author Jacky.gao
@ -51,7 +49,7 @@ public abstract class BaseServletAction implements ServletAction {
value=URLDecoder.decode(value, "utf-8"); value=URLDecoder.decode(value, "utf-8");
return value; return value;
}catch(Exception ex){ }catch(Exception ex){
throw new ReportComputeException(ex); return value;
} }
} }

Loading…
Cancel
Save