我已经签署了小程序,我想从服务器下载任何类型的文件并使用小程序将其放入文件系统中。
请指点一下。
提前致谢。
小程序需要签名才能访问文件系统。
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";
}
}
});
}
您必须为此编写 servlet。因为 servlet 可以访问服务器本地文件系统并为您的 applet 获取您想要的文件 :) 像一个
小程序 <-servlet<-server
祝你好运