Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试用 C++ 制作一个 Web 浏览器。它进展顺利,虽然我想添加 Favicon 并想要获得标题,这样我就可以为我的表单命名: - UFox(那里的随机名称。:P 这不是实际名称。)关于如何做的任何想法做这个?(我认为这是可能的。只是我知道该怎么做。:C)
要获取 favicon,它将位于http://www.example.com/favicon.ico. 使用您的系统检索 HTML 以检索.ico文件。标题位于 HTML 本身的 tag 下<title>...</title>。
http://www.example.com/favicon.ico
.ico
<title>...</title>
我希望这能回答你的问题!祝你的网络浏览器好运!