我正在尝试使用此处的代码从我的网站http://www.thisisnotaballgame.com/time获取日期和时间。问题是我在它变成日期和时间之前得到了这条线,它是一个 iframe。有什么方法可以将我从网站上获取的 html 翻译成日期和时间,还是我以错误的方式处理这个问题?我也在使用unity3d。
public string url = "http://www.thisisnotaballgame.com/time";
IEnumerator Start ()
{
url = "http://www.thisisnotaballgame.com/time";
WWW www = new WWW ( url );
yield return www;
//renderer.material.mainTexture = www.texture;
ExtractTimeFromBytes ( www.bytes );
}
void ExtractTimeFromBytes ( byte[] websiteBytes )
{
MemoryStream stream = new MemoryStream ( websiteBytes );
HtmlDocument doc = new HtmlDocument ();
doc.Load ( stream );
foreach ( HtmlNode link in doc.DocumentNode.SelectNodes("//iframe") )
{
string linkTxt = link.OuterHtml;
}
doc.Save ( "file.txt" );
}