要求提供网络视图代码 [英] requesting a code for webview

查看:86
本文介绍了要求提供网络视图代码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨...
我想知道他们是否有可能使用C语言打开网站吗?如果可能,请向我发送代码...

hi...
i want know is their any possibility to open a web using a C language?if possible send me the code please...

推荐答案

您的问题:是否可以用C语言打开网站?

答案是:是的.但我不会告诉它打开网络.我将其称为与HTTP服务器连接并接收HTTP数据

关于向您发送源代码:答案是否定的.

但我会给你一些建议:
1.了解Socket.
2.了解HTTP协议.
Your question: is it possible to open a web using C Language?

Answer is: yes. But I wont tell it opening web. I will call it connecting with HTTP server and receive HTTP data

About Sending you Source Code: the answer is no.

But I will give you some suggestion:
1. Learn about Socket.
2. Learn About HTTP Protocol.


亲爱的朋友,

如果您想使用C语言打开具有特定URL的Web浏览器,则:-

Dear Friend,

If you are thinking of opening a web browser with a particular URL from C language then:-

#include <windows.h>

void main()
{
   ShellExecute(NULL, "open", "http://dreamincode.net",
                NULL, NULL, SW_SHOWNORMAL);
}


这篇关于要求提供网络视图代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆