科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道jsp超级链接实现"目标另存为"功能

jsp超级链接实现"目标另存为"功能

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

jsp:

作者:中国IT实验室 来源:中国IT实验室 2007年9月3日

关键字: 目标另存为 JSP

  • 评论
  • 分享微博
  • 分享邮件

    jsp:


<%@ page language="java" contentType="text/html; charset=GB18030"
    pageEncoding
="GB18030"
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030">
<title>Insert title here</title>
</head>
<body>
<href="/test/test.do">1322</a>
</body>
</html>

 action:


package action;

import java.io.FileOutputStream;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;


public class TeAction extends Action {

    
public ActionForward execute(ActionMapping mapping, ActionForm form,
            HttpServletRequest request, HttpServletResponse response) 
throws Exception {
        
// TODO Auto-generated method stub
    
         StringBuilder sb 
= new StringBuilder();
         sb.append(
"1");
         response.addHeader(
"Content-Disposition""attachment; filename=test.txt"); 
         response.setContentType(
"application/octet-stream"); 
         response.setCharacterEncoding(
"GB2312"); 
         response.getWriter().write(sb.toString()); 
         response.flushBuffer();


        
return null;
    }

}

查看本文来源

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章