首先,我正在做一个Windows应用程序。不是网络应用程序。
现在我正在申请将SMS(短信)从系统发送到移动设备。
在这里,我使用http URL来推送包含参数To(number)和Msg(测试消息)的消息。
形成URL后,如
这里我提到3个用于IP地址,X用于密码和用户ID,因为保密。
发送此网址后,我在浏览器窗口中收到了“消息发送成功”等文字。
我想阅读文本并存储在数据库中。
我的问题是:如何从网络浏览器中阅读文字。
请抱着我!
答案 0 :(得分:2)
使用.NET,请参阅WebClient Class - 提供向URI标识的资源发送数据和从其接收数据的常用方法。
在这里看过几次,例如fastest c# code to download a web page
编辑:System.Net.WebClient
类未连接到Web应用程序,可以在控制台或winforms应用程序中轻松使用。 MSDN链接中的C#示例是一个独立的控制台应用程序(编译并运行它以进行检查):
using System;
using System.Net;
using System.IO;
public class Test
{
public static void Main (string[] args)
{
if (args == null || args.Length == 0)
{
throw new ApplicationException ("Specify the URI of the resource to retrieve.");
}
WebClient client = new WebClient ();
client.Headers.Add ("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)");
Stream data = client.OpenRead (args[0]);
StreamReader reader = new StreamReader (data);
string s = reader.ReadToEnd ();
Console.WriteLine (s);
data.Close ();
reader.Close ();
}
}
答案 1 :(得分:0)
以下是Microsoft WebClient Class的代码。
using System;
using System.Net;
using System.IO;
public class Test
{
public static void Main (string[] args)
{
if (args == null || args.Length == 0)
{
throw new ApplicationException ("Specify the URI of the resource to retrieve.");
}
WebClient client = new WebClient ();
// Add a user agent header in case the
// requested URI contains a query.
client.Headers.Add ("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)");
Stream data = client.OpenRead (args[0]);
StreamReader reader = new StreamReader (data);
string s = reader.ReadToEnd ();
Console.WriteLine (s);
data.Close ();
reader.Close ();
}
}