在.NET中,连接到服务通常涉及以下几种方法:
使用TcpClient和TcpListener
客户端可以使用`TcpClient`类来发起连接。
服务端可以使用`TcpListener`类来监听连接请求。
示例代码:
```csharp
// 服务端
using System;
using System.Net;
using System.Net.Sockets;
namespace Server
{
class Program
{
static void Main(string[] args)
{
TcpListener listener = new TcpListener(IPAddress.Any, 8500);
listener.Start();
Console.WriteLine("服务器启动,等待连接...");
TcpClient client = listener.AcceptTcpClient();
Console.WriteLine("客户端已连接");
// 处理连接
NetworkStream stream = client.GetStream();
byte[] data = new byte;
int bytesRead = stream.Read(data, 0, data.Length);
string receivedData = System.Text.Encoding.ASCII.GetString(data, 0, bytesRead);
Console.WriteLine("接收到的数据: " + receivedData);
client.Close();
listener.Stop();
}
}
}
// 客户端
using System;
using System.Net.Sockets;
namespace Client
{
class Program
{
static void Main(string[] args)
{
TcpClient client = new TcpClient("127.0.0.1", 8500);
Console.WriteLine("客户端已连接到服务器");
NetworkStream stream = client.GetStream();
string message = "Hello, Server!";
byte[] data = System.Text.Encoding.ASCII.GetBytes(message);
stream.Write(data, 0, data.Length);
client.Close();
}
}
}
```
使用ADO.NET连接数据库
使用`SqlConnection`类来建立与SQL Server或其他数据库的连接。
使用`SqlCommand`类来执行SQL查询和命令。
示例代码:
```csharp
using System;
using System.Data.SqlClient;
namespace ADONetExample
{
class Program
{
static void Main(string[] args)
{
string connectionString = "Server=localhost;Database=northwind;User Id=sa;Password=admin;";
using (SqlConnection con = new SqlConnection(connectionString))
{
con.Open();
string query = "SELECT * FROM Categories";
using (SqlCommand cmd = new SqlCommand(query, con))
{
using (SqlDataReader reader = cmd.ExecuteReader())
{
while (reader.Read())
{
Console.WriteLine(reader["CategoryName"].ToString());
}
}
}
con.Close();
}
}
}
}
```
使用Web API或ASP.NET Core连接数据库
在ASP.NET Core中,可以使用Entity Framework Core来连接和操作数据库。
配置数据库连接字符串,并使用依赖注入来注入数据库上下文。
示例代码(ASP.NET Core):
```csharp
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using MyApp.Models;
namespace MyApp.Controllers
{
[Route("api/[controller]")]
[ApiController]
public class CategoriesController : ControllerBase
{
private readonly ApplicationDbContext _context;
public CategoriesController(ApplicationDbContext context)
{
_context = context;
}
[HttpGet]
public ActionResult { return _context.Categories.ToList(); } } } ``` 总结 TCP连接适用于本地或远程的应用程序之间的通信。 ADO.NET适用于与SQL Server等关系型数据库的连接。 Web API或ASP.NET Core适用于Web应用程序与数据库的交互,通常使用Entity Framework Core作为ORM。 选择哪种连接方式取决于具体的应用场景和需求。