1


GWT クライアントからファイルをダウンロードしようとしています。サーバー側には、リクエストに応じてファイルのコンテンツを生成し、それをクライアントに送り返すサーブレットがあります。

テスト シナリオ:

シナリオ 1サーブレットの URL に直接アクセスすると、問題なく目的の結果が得られます。

シナリオ 2 IE8 で GWT クライアントを使用すると、コードを変更せずにファイルをダウンロードできます。ただし、他のコンピューターでは、応答出力ストリームにファイル コンテンツを書き込もうとするとすぐに、EOF 例外が発生します。

org.mortbay.jetty.HttpGenerator.flush
(HttpGenerator.java:760)
での org.mortbay.jetty.EofException org.mortbay.jetty.AbstractGenerator$Output.flush(AbstractGenerator.java:566)
で org.mortbay.jetty. java.io.BufferedOutputStream.flushの HttpConnection$Output.flush(HttpConnection.java:911) (提供 元
不明
)
)
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)で入力ストリームを作成しています....

サーブレットのコードは次のとおりです。


{
出力 = 新しい BufferedOutputStream(response.getOutputStream(), DEFAULT_BUFFER_SIZE); を試してください。
バイト[] バッファ = 新しいバイト[DEFAULT_BUFFER_SIZE];
整数の長さ;
int バイト書き込み = 0;
while ((length = data.read(buffer)) > 0) {
bytesWritten+=length;
output.write(バッファ、0、長さ);
}
output.flush() // この時点で、EOF 例外に直面しています。

ここで、データはinputStream

ですbytesWritten変数を介して、3つのシナリオすべてでコンテンツが同じ方法で出力ストリームに書き込まれていることを確認しました。しかし、一部のコンピューターで機能しない理由がわかりません。


どのポイントも高く評価されます。

4

2 に答える 2

0

GWTでファイルをダウンロードするには、このようなことをします

サーバー側では:

public static void sendFileToClient(String path, String filename,
        int contentLen, HttpServletRequest request,
        HttpServletResponse response) throws UnsupportedEncodingException
{
    String ua = request.getHeader("User-Agent").toLowerCase();
    boolean isIE = ((ua.indexOf("msie 6.0") != -1) || (ua
            .indexOf("msie 7.0") != -1)) ? true : false;

    String encName = URLEncoder.encode(filename, "UTF-8");

    // Derived from Squirrel Mail and from
    // http://www.jspwiki.org/wiki/BugSSLAndIENoCacheBug
    if (request.isSecure())
    {
        response.addHeader("Pragma", "no-cache");
        response.addHeader("Expires", "-1");
        response.addHeader("Cache-Control", "no-cache");
    }
    else
    {
        response.addHeader("Cache-Control", "private");
        response.addHeader("Pragma", "public");
    }

    if (isIE)
    {
        response.addHeader("Content-Disposition", "attachment; filename=\"" + encName + "\"");
        response.addHeader("Connection", "close");
        response.setContentType("application/force-download; name=\"" + encName + "\"");
    }
    else
    {
        response.addHeader("Content-Disposition", "attachment; filename=\""
                + encName + "\"");
        response.setContentType("application/octet-stream; name=\""
                + encName + "\"");
        if (contentLen > 0)
            response.setContentLength(contentLen);
    }

    try
    {
        FileInputStream zipIn = new FileInputStream(new File(path));

        ServletOutputStream out = response.getOutputStream();
        response.setBufferSize(8 * 1024);
        int bufSize = response.getBufferSize();
        byte[] buffer = new byte[bufSize];

        BufferedInputStream bis = new BufferedInputStream(zipIn, bufSize);

        int count;
        while ((count = bis.read(buffer, 0, bufSize)) != -1)
        {
            out.write(buffer, 0, count);
        }
        bis.close();
        zipIn.close();

        out.flush();
        out.close();
    }
    catch (FileNotFoundException e)
    {
        System.out.println("File not found");
    }
    catch (IOException e)
    {
        System.out.println("IO error");
    }
}

ID を期待するサーブレットがあり、関連するファイル パスを取得し、上記のコードを使用してブラウザーに提供します。

クライアント側では:

public class DownloadIFrame extends Frame implements LoadHandler,
        HasLoadHandlers
{
    public static final String DOWNLOAD_FRAME = "__gwt_downloadFrame";

    public DownloadIFrame(String url)
    {
        super();
        setSize("0px", "0px");
        setVisible(false);
        RootPanel rp = RootPanel.get(DOWNLOAD_FRAME);
        if (rp != null)
        {
            addLoadHandler(this);
            rp.add(this);
            setUrl(url);
        }
        else
            openURLInNewWindow(url);
    }

    native void openURLInNewWindow(String url) /*-{
        $wnd.open(url);
    }-*/;

    public HandlerRegistration addLoadHandler(LoadHandler handler)
    {
        return addHandler(handler, LoadEvent.getType());
    }

    public void onLoad(LoadEvent event)
    {
    }
}

ホストされているページで、この Iframe を追加します

<iframe src="javascript:''" id="__gwt_downloadFrame" tabIndex='-1' style="position:absolute;width:0;height:0;border:0"></iframe>

次に、ファイルをダウンロードするには、次のように入力します。

    btnDownload.addClickHandler(new ClickHandler()
        {
            public void onClick(ClickEvent arg0)
            {
                String url = GWT.getModuleBaseURL()
                        + "/downloadServlet?id=[FILE_ID]";
                new DownloadIFrame(url);
            }
        });

これがお役に立てば幸いです。

ハッピーコーディング!

于 2011-02-03T19:53:27.790 に答える