How can I send a file via Web Application

77 Ansichten (letzte 30 Tage)
Morteza
Morteza am 21 Okt. 2018
Kommentiert: Osborn am 30 Jan. 2024
Hi I deployed a web application. After analyzing data imported by user through web browser, I want to send results as an excel file that can be downloaded by user. How should I do that?

Akzeptierte Antwort

Kojiro Saito
Kojiro Saito am 21 Okt. 2018
Users can upload their files by uigetfile and download result by uiputfile. Please keep in mind that uigetfile and uiputfile are supported in WebApps from R2018b.
The following examples can import users' uploaded CSV file and download Excel file. The downloaded file will be found browser's download folder (for example, if Windows, C:\Users\USERNAME\Downloads)
uigetfile example:
% Button pushed function: UploadButton
function UploadButtonPushed(app, event)
[file, path] = uigetfile({'*.csv*'}, 'File Selector', 'MultiSelect', 'on');
if isequal(file,0)
disp('Canceled')
else
% Read input file
inpuFilePath = fullfile(path,file);
tbl = readtable(inpuFilePath);
% Do some calculation
app.resultTbl = table;
app.resultTbl.col1 = tbl.col1 + tbl.col2 + tbl.col3;
end
end
uiputfile example:
% Button pushed function: DownloadButton
function DownloadButtonPushed(app, event)
[file,path] = uiputfile('results.xlsx');
resultFilePath = fullfile(path,file);
writetable(app.resultTbl, resultFilePath)
end
Also, I've attached sample mlapp file and csv file for this demo. Please see Sample_mlapp.zip. If compiled as a WebApps, the app would look like this.
Users can download results.xlsx into their machine.
  13 Kommentare
Yuhao Sun
Yuhao Sun am 26 Aug. 2020
it seems like the uigetdir cannot be supported in web apps. You should show a notification if we use this function when the web app is complied.
Cathie Kessler
Cathie Kessler am 23 Jan. 2021
Bearbeitet: Cathie Kessler am 25 Jan. 2021
Has this been resolved? I believe I am experiencing the exact same issue.
I'm not reading; only writing to an Excel (or .csv, if I have to) file. It works perfectly as an app on my computer, but when deployed, I get the "Starting download for test1.xls" message in log, but never receive a file in my Downloads directory.
I'm using writematrix, rather than writetable, but otherwise, my script looks much like the uiputfile example, above.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Roberto M Sanchez
Roberto M Sanchez am 3 Dez. 2019
Hello,
This theath has show quite well how to download an excel table using the command writetable. My problem is that I have generated a pdf report with reportgenerator and I want use saveas instead of writetable. But saveas is not supported in webapps.
How can I send the pdf report to the user?.
Thanks.
  3 Kommentare
Alessandro
Alessandro am 27 Feb. 2023
You basically "saved my life"!!!!! Great!
Osborn
Osborn am 30 Jan. 2024
@Hunter Casillas's solution works great for non-Excel files. Thanks!

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Data Import and Export finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by