现在的位置: 首页 > 综合 > 正文

jsp生成桌面快捷键 (转载)

2013年05月13日 ⁄ 综合 ⁄ 共 1284字 ⁄ 字号 评论关闭

<%@ page contentType="text/html; charset=gb2312" import="java.io.*"%>
<%
    String url = request.getParameter("url");
    String templateContent = "[InternetShortcut]" + "/n"
            + "URL= http://localhost:7001/jcewweb";
    String realfilename = "晋城信息管理系统" + ".url";

    String upurl = request.getRealPath(" //upload//url//");
    String filename = upurl + "//" + realfilename;
    FileOutputStream fileoutputstream = new FileOutputStream(filename);//建立文件输出流
    byte tag_bytes[] = templateContent.getBytes();
    fileoutputstream.write(tag_bytes);
    fileoutputstream.close();

    try {
        File file = new File(upurl, realfilename);
        BufferedInputStream bis = new BufferedInputStream(
        new FileInputStream(file));
        byte[] buffer = new byte[111000];
        realfilename = java.net.URLEncoder.encode(realfilename,
        "GB2312");
        realfilename = java.net.URLDecoder.decode(realfilename,
        "ISO8859_1");
        response.reset();
        response.setCharacterEncoding("UTF-8");
        response.setContentType("application/x-download");//不同类型的文件对应不同的MIME类型
        response.setHeader("Content-Disposition",
        "attachment; filename=" + realfilename);
        OutputStream os = response.getOutputStream();
        while (bis.read(buffer) > 0) {
            os.write(buffer);
        }
        bis.close();
        os.close();
    } catch (Exception e) {
        e.printStackTrace();
    }
%>

抱歉!评论已关闭.