httpservletresponse-HttpServletResponse报错

问题描述

HttpServletResponse报错

package com.util;

import java.io.PrintWriter;

import javax.servlet.http.HttpServletResponse;

import org.apache.struts2.dispatcher.StrutsResultSupport;

import com.opensymphony.xwork2.ActionInvocation;

public class StringResultType extends StrutsResultSupport {
private static final long serialVersionUID = 1L;
private String contentTypeName;
private String stringName = "";

public StringResultType() {
    super();
}

public StringResultType(String location) {
    super(location);
}

@Override
protected void doExecute(String finalLocation, ActionInvocation invocation) throws Exception {
    HttpServletResponse response = (HttpServletResponse) invocation.getInvocationContext().get(HTTP_RESPONSE);
    // String contentType = (String)
    // invocation.getStack().findValue(conditionalParse(contentTypeName,
    // invocation));
    String contentType = conditionalParse(contentTypeName, invocation);
    if (contentType == null) {
        contentType = "text/plain; charset=UTF-8";
    }
    response.setContentType(contentType);
    PrintWriter out = response.getWriter();
    // String result = conditionalParse(stringName, invocation);
    String result = (String) invocation.getStack().findValue(stringName);
    out.println(result);
    out.flush();
    out.close();

}

public String getContentTypeName() {
    return contentTypeName;
}

public void setContentTypeName(String contentTypeName) {
    this.contentTypeName = contentTypeName;
}

public String getStringName() {
    return stringName;
}

public void setStringName(String stringName) {
    this.stringName = stringName;
}

}

解决方案

解决方案二:

HttpServletRequestAnd HttpServletResponse
HttpServletResponse
HttpServletResponse

解决方案三:

异常信息是什么呢?看这段代码看不出什么问题啊。

解决方案四:

解决方案五:

解决方案六:

把import整句剪切,粘贴,IDE难免会抽风

解决方案七:

看一下你引得jar包是否加进项目了,或者选择build查一下

时间: 2024-11-10 07:39:02

httpservletresponse-HttpServletResponse报错的相关文章

ttp ervlet esponse-HttpServletResponse对象获取头信息,报错找不到方法

问题描述 HttpServletResponse对象获取头信息,报错找不到方法 源码: JSONObject returnJson = JSONObject.fromObject(json); response.setContentType("text/html;charset=utf-8"); if(!"0".equals(returnJson.get("code"))){ response.setHeader("McAuditRes

jsp-java 显示柱状图报错

问题描述 java 显示柱状图报错 package wsy.servlet; import java.awt.Color; import java.awt.Font; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.s

异步通过省加载城市-将一个List集合转成JSONObject报错:

问题描述 将一个List集合转成JSONObject报错: 各位大神,我要异步通过省加载城市,可是转json的时候就报错了public String getCitys(){ List<City> citys = cityService.find(""from City where province.pid=?"" new Object[]{pid}); JSONObject jo = new JSONObject(); jo.put("&quo

modelandview-modelAndView报错,不知道是怎么回事?请大神解决

问题描述 modelAndView报错,不知道是怎么回事?请大神解决 报这个错:ModelAndView: materialized View is [null]; model is null 配置里是: <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="pre

服务器-未赋值的session在jsp报错,求大神帮帮忙吧

问题描述 未赋值的session在jsp报错,求大神帮帮忙吧 想要在页面打开是判定一个session会话,这个session要等到跳转到服务器之后才能赋值. 但是明明我设定了判断是否为空,可是还是报错. 这是我的页面和服务器代码: <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <!DOCTYPE HTML PUBLIC "-//

用servlet更新mysql数据不成功,没有报错,只是无法更新~求大神指点

问题描述 用servlet更新mysql数据不成功,没有报错,只是无法更新~求大神指点 这是更新的函数,在productdaoimpl类里: public int updateProduct(Product product){ int flag = 0; DBConnect conn = null; PreparedStatement pstmt = null; //update statement String sql = "update productinfo set productnumb

querystring-在httpclient中使用Serializable接口报错

问题描述 在httpclient中使用Serializable接口报错 public static void main(String[] args) throws IOException ClassNotFoundException { String url = ""http://localhost:8080/RmiJetty/test""; Scanner sc1 = new Scanner(System.in); String queryString1 = &q

做一个简单的jsp登陆界面servlet报错

问题描述 做一个简单的jsp登陆界面servlet报错 package com.demo; import java.io.IOException; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import javax.servlet.Serv

spring mvc-关于Spring mvc 向服务器上传文件报错问题

问题描述 关于Spring mvc 向服务器上传文件报错问题 Spring mvc在向服务器上传的文件的时候报错 显示系统找不到指定的路径,应该要怎么修改 解决方案 大文件上传到服务器报错的问题大文件上传到服务器报错的问题ASP.NET 上传Excel到服务器报错的问题 解决方案二: 错误粘出来看看,可能原因有很多 解决方案三: 代码是这个 @RequestMapping("/updateExcel") public String updateExcel(HttpServletRequ