Web app not able to perform xlsread/xlswrite

2 ビュー (過去 30 日間)
Giulio Francesca
Giulio Francesca 2018 年 7 月 29 日
コメント済み: srinu siliveru 2019 年 3 月 21 日
I've compiled a web application with matlab web app compiler. In my code I use both .mat files and .xlsx files which are located in the same folder. While my program is able to access .mat files without any error, xlsx files are not accessible returning the error: Excel couldn't find the specified file. However, when run in matlab environment I do not receive this error. The error appears when I try to run the app from my web server.

回答 (5 件)

Titus Edelhofer
Titus Edelhofer 2018 年 7 月 30 日
Hi Giulio,
have you tried to first build up the full path to the Excel file? So instead of only the file name provide the full path?
Titus
  1 件のコメント
Giulio Francesca
Giulio Francesca 2018 年 8 月 1 日
Hi Titus, thanks you for your reply. I realize that the problem could be related xlsread function which uses the 'basic' mode when adopted into a web application. Anyway, I'm not sure about that because sometimes it works, other is not

サインインしてコメントする。


srinu siliveru
srinu siliveru 2019 年 3 月 15 日
hi Titus, can you please explain with a example.
thank you
  1 件のコメント
Titus Edelhofer
Titus Edelhofer 2019 年 3 月 15 日
編集済み: Titus Edelhofer 2019 年 3 月 15 日
I meant something like
data = xlsread('C:\Data\myfile.xlsx');
instead of
data = xlsread('myfile.xlsx');
Titus

サインインしてコメントする。


srinu siliveru
srinu siliveru 2019 年 3 月 16 日
thank you very much.
i will try

srinu siliveru
srinu siliveru 2019 年 3 月 16 日
Thanks a lot sir
it worked.

srinu siliveru
srinu siliveru 2019 年 3 月 16 日
Will it works if i want to use the .exe file in another sytem because path will change
can you please help me how to handle that.
thanks in advance
  2 件のコメント
Titus Edelhofer
Titus Edelhofer 2019 年 3 月 18 日
Hi,
you might use the function isdeployed to distinguish:
if isdeployed
% read from folder A on system where exe runs
else
% read from folder B on your development system
end
Titus
srinu siliveru
srinu siliveru 2019 年 3 月 21 日
hi Titus
Thank you for helping
srinu

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeMATLAB Web App Server についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by