我正在 vaadin 开发我的第一个应用程序。现在我正在尝试自定义上传组件。总之,我必须上传图像。
现在我的组件以标准方式实现:
public OutputStream receiveUpload(String filename,String mimeType) {
// Create upload stream
FileOutputStream fos = null; // Stream to write to
try {
// Open the file for writing.
file = new File("/tmp/uploads/" + filename);
fos = new FileOutputStream(file);
} catch (final java.io.FileNotFoundException e) {
new Notification("Could not open file<br/>",e.getMessage(),Notification.Type.ERROR_MESSAGE).show(Page.getCurrent());
return null;
}
return fos; // Return the output stream to write to
}
我想问你,我是否可以在不使用服务器上的临时文件的情况下上传文件。
我能怎么做?