我正在尝试创建 ac# 程序,该程序将能够自动从麦考瑞大学的回声中心下载讲座。
示例链接:http ://echo.mq.edu.au:8080/ess/portal/section/ANTH106_FHFYR_2012
问题是我不知道如何选择 mp3 或 m4v 的下载链接(如果可能的话)。我想出的唯一解决方案是下载源代码并尝试解析它的链接。
如果有人可以请告诉我如何从优秀的浏览器对象中选择下载链接:) 否则我将尝试使用源代码。
Broswer browser = new Broswer(address);
if (!System.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable())
{
MessageBox.Show("This machine needs to be connected to the internet to download your lectures.\n\nPlease connect to the internet and try again.", "Network Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
else
{
//
}