0

我已经签署了小程序,我想从服务器下载任何类型的文件并使用小程序将其放入文件系统中。

请指点一下。

提前致谢。

4

2 回答 2

0

小程序需要签名才能访问文件系统。

 public String downloadFile(final String filename) {
    return (String)AccessController.doPrivileged(new PrivilegedAction(){
        public Object run() {       
          try {
                // downloadURL is the server URL say http://localhost/downloads
                // filename is a file want to download from the server 
                // localpath is the path you want to download in the file system
                URL finalURL = new URL(downloadURL + filename);
                ReadableByteChannel rbc = Channels.newChannel(finalURL.openStream());
                FileOutputStream fos = new FileOutputStream("/"+localpath.replace("\\","/") +  filename);
                fos.getChannel().transferFrom(rbc, 0, 1 << 24);
                fos.close();
            return "true";
          }catch (ConnectException ce) {
              e.printStackTrace();
              return "false";
          } 
          catch (Exception e) {
            e.printStackTrace();
            return "false";
          }
        }
      });
}
于 2011-10-17T06:52:28.543 回答
0

您必须为此编写 servlet。因为 servlet 可以访问服务器本地文件系统并为您的 applet 获取您想要的文件 :) 像一个

小程序 <-servlet<-server

祝你好运

于 2011-10-10T02:24:05.703 回答