用户如何在客户端下载文件(Google Web Toolkit)

时间:2012-12-05 14:15:44

标签: gwt download

我正在使用GWT(Google Web Toolkit)制作网站。 我需要向用户显示一个表,让用户下载表的内容。

在客户端,用户如何在按下“下载”按钮时下载文件?

“下载”按钮有一个onClick()监听器。客户端类扩展Composite

我试图让类扩展HttpServlet,但它变得太复杂了。

我已在这里阅读帖子:

  1. http://www.mkyong.com/java/how-to-download-file-from-website-java-jsp/
  2. How to use GWT when downloading Files with a Servlet?
  3. 但我仍然不知道如何在客户端向用户提供可下载文件。

4 个答案:

答案 0 :(得分:22)

您真的需要区分GWT客户端Java代码和服务器端Java代码。

在GWT Java代码的客户端

String url = GWT.getModuleBaseURL() + "downloadService?fileInfo1=" + fileInfo1;
Window.open( url, "_blank", "status=0,toolbar=0,menubar=0,location=0");

在非gwt Java代码的服务器端 -

在web.xml中

<servlet>
    <servlet-name>downloadService</servlet-name>
    <servlet-class>AAA.BBB.CCC.DownloadServlet</servlet-class>
</servlet>

<servlet-mapping>
    <servlet-name>downloadService</servlet-name>
    <url-pattern>/<gwtmodulename>/downloadService</url-pattern>
</servlet-mapping>

在服务器包中编写一个servlet

    public class DownloadServlet extends HttpServlet{
    protected void doGet( HttpServletRequest req, HttpServletResponse resp ) throws ServletException, IOException
        {
            String fileName = req.getParameter( "fileInfo1" );

            int BUFFER = 1024 * 100;
            resp.setContentType( "application/octet-stream" );
            resp.setHeader( "Content-Disposition:", "attachment;filename=" + "\"" + fileName + "\"" );
            ServletOutputStream outputStream = resp.getOutputStream();
            resp.setContentLength( Long.valueOf( getfile(fileName).length() ).intValue() );
            resp.setBufferSize( BUFFER );
            //Your IO code goes here to create a file and set to outputStream//

        }
    }

确保将文件内容推送到**outputStream**

答案 1 :(得分:3)

如果您知道文件的路径,则代码段如下所示。

button.addClickHandler(new ClickHandler()  
{ 

    @Overrid
    public void onClick(ClickEvent event) 
    {
        Window.open(GWT.getHostPageBaseURL() + "/file.rar", "name", "enabled");
    }
});

答案 2 :(得分:0)

您可以尝试ClientIO使用GWT在客户端上读取和写入文件

http://www.emitrom.com/blog/client-io

答案 3 :(得分:0)

完成io部分中第一项的答案......

您可以参考此链接

http://www.programcreek.com/2009/02/java-convert-a-file-to-byte-array-then-convert-byte-array-to-a-file/

或参考此代码

File file = new File(enter the filepath here)
FileInputStream fis = new FileInputStream(file);
                ByteArrayOutputStream bos = new ByteArrayOutputStream();
                byte[] buf = new byte[1024];
                try {
                    for (int readNum; (readNum = fis.read(buf)) != -1;) {
                        bos.write(buf, 0, readNum); //no doubt here is 0
                        //Writes len bytes from the specified byte array starting at offset off to this byte array output stream.
                        System.out.println("read " + readNum + " bytes,");
                    }
                } catch (IOException ex) {
                    System.err.println("unable to convert to bytes");
                }
                byte[] bytes = bos.toByteArray();
                outputStream.write(bytes);
                outputStream.flush();
                outputStream.close();
希望它有所帮助!