程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> httpservletresponse-HttpServletResponse報錯

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;
}

}

最佳回答:


圖片說明

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved