Ver código fonte

Update advanced-dragndrop.asciidoc (#10680)

* Update advanced-dragndrop.asciidoc

Fixing example of Drag and drop code.
Resolves https://github.com/vaadin/framework/issues/10512

* Update advanced-dragndrop.asciidoc

Removed unnecessary spaces

* Update advanced-dragndrop.asciidoc

Removed unnecessary spaces
tags/8.4.0.alpha1
Anastasia Smirnova 6 anos atrás
pai
commit
0c5e445058
1 arquivos alterados com 13 adições e 3 exclusões
  1. 13
    3
      documentation/advanced/advanced-dragndrop.asciidoc

+ 13
- 3
documentation/advanced/advanced-dragndrop.asciidoc Ver arquivo

Label dropArea = new Label("Drop files here"); Label dropArea = new Label("Drop files here");
FileDropTarget<Label> dropTarget = new FileDropTarget<>(dropArea, event -> { FileDropTarget<Label> dropTarget = new FileDropTarget<>(dropArea, event -> {


List<Html5File> files = event.getFiles();
Collection<Html5File> files = event.getFiles();
files.forEach(file -> { files.forEach(file -> {
// Max 1 MB files are uploaded // Max 1 MB files are uploaded
if (file.getFileSize() <= 1024 * 1024) { if (file.getFileSize() <= 1024 * 1024) {
// Output stream to write the file to // Output stream to write the file to
@Override @Override
public OutputStream getOutputStream() { public OutputStream getOutputStream() {
return new FileOutputStream("/path/to/files/"
+ file.getFileName());
try{
return new FileOutputStream("/path/to/files/"
+ file.getFileName());
}catch (FileNotFoundException e) {
e.printStackTrace();
}
return null;
} }


// Returns whether onProgress() is called during upload // Returns whether onProgress() is called during upload
Notification.show("Stream failed, fileName=" Notification.show("Stream failed, fileName="
+ event.getFileName()); + event.getFileName());
} }

@Override
public boolean isInterrupted() {
return false;
}
}); });
} }
} }

Carregando…
Cancelar
Salvar