필터 지우기
필터 지우기

How to import an excel file from the web?

조회 수: 14 (최근 30일)
Feng
Feng 2013년 1월 11일
I would like to import an excel spreadsheet which is on the intranet. I can click the file to download it when I am on that page. Now I am able to read the source code of that page using 'urlread', but not sure how to open the actual file.
Any clue?
Thanks,
Feng

채택된 답변

Walter Roberson
Walter Roberson 2013년 1월 11일
xlsread()
  댓글 수: 2
Feng
Feng 2013년 1월 11일
Thanks for the response. How do I refer the file on the internet?
Walter Roberson
Walter Roberson 2013년 1월 12일
urlread() of the download page will allow you to find the URL of the file itself; it will probably be in the form of a file: URL or possibly an http: or https: URL. Once you have extracted that URL, urlread() or urlwrite() the file itself.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Jan
Jan 2013년 1월 12일
편집: Jan 2013년 1월 12일
You can use URLREAD to read the Excel file, store it locally and use XLSREAD then.
Walter 's idea is better: urlwrite performs the storing to disk implicitly.
  댓글 수: 1
Walter Roberson
Walter Roberson 2013년 1월 12일
urlwrite() might make more sense than urlread() in this circumstance.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Standard File Formats에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by