How to import an excel file from the web?
    8 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
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
0 commentaires
Réponse acceptée
  Walter Roberson
      
      
 le 11 Jan 2013
        xlsread()
2 commentaires
  Walter Roberson
      
      
 le 12 Jan 2013
				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.
Plus de réponses (1)
  Jan
      
      
 le 12 Jan 2013
        
      Modifié(e) : Jan
      
      
 le 12 Jan 2013
  
      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 commentaire
  Walter Roberson
      
      
 le 12 Jan 2013
				urlwrite() might make more sense than urlread() in this circumstance.
Voir également
Catégories
				En savoir plus sur Spreadsheets dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


