按代码获取下载的文件内容

时间:2017-09-14 17:28:07

标签: javascript html html5 file download

以下网址 https://planning.univ-st-etienne.fr/jsp/custom/modules/plannings/anonymous_cal.jsp?resources=3797&projectId=1&calType=ical&firstDate=2017-08-22&lastDate=2018-08-20 自动为我下载文件(.ics),我需要它的文本内容。我想通过我网站的代码自动获取此文本,因此我不需要每天手动更新。

我怎么能管理它?

1 个答案:

答案 0 :(得分:0)

如果您使用客户端语言(Javascript),则会很困难Follow question about it

然后,如果您使用像PHP这样的服务器端,您可以这样编码:

<?php
    $urlICS = 'https://planning.univ-st-etienne.fr/jsp/custom/modules/plannings/anonymous_cal.jsp?resources=3797&projectId=1&calType=ical&firstDate=2017-08-22&lastDate=2018-08-20';
    $contentICS = file_get_contents($urlICS);
    echo $contentICS;
?>