编辑
2025-09-28
C#
00

在C#中,二进制文件的读写通常涉及到System.IO命名空间中的FileStreamBinaryReaderBinaryWriter类。这些类提供了处理二进制数据的方法,可以读写任何类型的文件,例如图像、音频、视频或任何非文本文件。

使用 FileStream

FileStream类提供了对文件的字节级读写访问。它是一个表示文件的流,可以用于读取和写入字节。

写入二进制文件

以下是使用FileStream类写入二进制文件的示例:

C#
namespace AppBinaryfile { internal class Program { static void Main(string[] args) { string filePath = @"./binaryfile.bin"; byte[] bytesToWrite = new byte[] { 0x0F, 0x1B, 0x3C, 0x4D, 0x5E, 0x6F }; using (FileStream fileStream = new FileStream(filePath, FileMode.Create)) { fileStream.Write(bytesToWrite, 0, bytesToWrite.Length); } Console.WriteLine("写入二进制成功。"); } } }

image.png

编辑
2025-09-28
C#
00

在C#中,读写文本文件是一个常见的编程任务,无论是存储数据、记录日志还是配置设置。本文将详细介绍如何使用C#进行文件读写操作,并提供多个实用示例。

使用 System.IO 命名空间

在C#中,读写文件需要引入System.IO命名空间,它提供了一系列的类用于文件和流的操作。

写入文本文件

使用 StreamWriter

StreamWriter类用于向一个文本文件中写入字符。下面是一个使用StreamWriter写入文件的例子:

C#
namespace AppIO { internal class Program { static void Main(string[] args) { string filePath = @".\a.txt"; // 使用using语句确保StreamWriter正确释放资源 using (StreamWriter writer = new StreamWriter(filePath)) { writer.WriteLine("Hello, World!"); // 写入一行文本 writer.WriteLine("Welcome to C# file operations."); } Console.WriteLine("File written successfully."); Console.ReadKey(); } } }

image.png

编辑
2025-09-28
C#
00

C#的System.IO命名空间是.NET Framework中一个功能强大的库,它提供了一系列的类和方法,用于执行输入和输出操作,包括文件和数据流的读写、文件和目录的创建和管理等。在本文中,我们将深入探讨System.IO命名空间,并通过一系列的示例来展示其用法。

文件操作

读取文件

要读取文本文件,可以使用StreamReader类。以下示例演示了如何读取一个文本文件的全部内容:

C#
namespace AppIO { internal class Program { static void Main(string[] args) { string path = "./myfile.txt"; try { using (StreamReader reader = new StreamReader(path)) { string content = reader.ReadToEnd(); Console.WriteLine(content); } } catch (IOException e) { Console.WriteLine("An IO exception has been thrown!"); Console.WriteLine(e.ToString()); } Console.ReadKey(); } } }

image.png

写入文件

编辑
2025-09-28
SQLite
00

SQLite 中的交叉连接(CROSS JOIN),本文将深入探讨交叉连接的概念、语法和用法,并通过实际的例子来展示其在数据库查询中的应用和注意事项。我们将从准备测试数据开始,然后逐步深入交叉连接的各个方面。

准备测试数据

首先,让我们创建一些测试表和数据来演示交叉连接的使用。我们将创建一个简单的产品组合系统,包含颜色、尺寸和产品三个表。

SQL
-- 创建颜色表 CREATE TABLE colors ( color_id INTEGER PRIMARY KEY, color_name TEXT NOT NULL ); -- 创建尺寸表 CREATE TABLE sizes ( size_id INTEGER PRIMARY KEY, size_name TEXT NOT NULL ); -- 创建产品表 CREATE TABLE products ( product_id INTEGER PRIMARY KEY, product_name TEXT NOT NULL, base_price REAL NOT NULL ); -- 插入颜色数据 INSERT INTO colors (color_id, color_name) VALUES (1, 'Red'), (2, 'Blue'), (3, 'Green'), (4, 'Yellow'); -- 插入尺寸数据 INSERT INTO sizes (size_id, size_name) VALUES (1, 'Small'), (2, 'Medium'), (3, 'Large'); -- 插入产品数据 INSERT INTO products (product_id, product_name, base_price) VALUES (1, 'T-Shirt', 15.99), (2, 'Jeans', 39.99), (3, 'Sneakers', 59.99);

这些测试数据为我们提供了一个基础,可以用来演示交叉连接的各种用法。

编辑
2025-09-28
SQLite
00

本文为您详细介绍 SQLite 中的外连接(OUTER JOIN)。本文将深入探讨外连接的概念、语法和用法,并通过实际的例子来展示其在数据库查询中的重要性和应用。我们将从准备测试数据开始,然后逐步深入外连接的各个方面。

准备测试数据

首先,让我们创建一些测试表和数据来演示外连接的使用。我们将创建一个简单的学校管理系统,包含学生、课程和注册信息三个表。

SQL
-- 创建学生表 CREATE TABLE students ( student_id INTEGER PRIMARY KEY, student_name TEXT NOT NULL, age INTEGER, grade TEXT ); -- 创建课程表 CREATE TABLE courses ( course_id INTEGER PRIMARY KEY, course_name TEXT NOT NULL, teacher TEXT, credits INTEGER ); -- 创建注册表 CREATE TABLE enrollments ( enrollment_id INTEGER PRIMARY KEY, student_id INTEGER, course_id INTEGER, enrollment_date TEXT, FOREIGN KEY (student_id) REFERENCES students(student_id), FOREIGN KEY (course_id) REFERENCES courses(course_id) ); -- 插入学生数据 INSERT INTO students (student_id, student_name, age, grade) VALUES (1, 'Alice Johnson', 18, '12th'), (2, 'Bob Smith', 17, '11th'), (3, 'Charlie Brown', 16, '10th'), (4, 'Diana Ross', 18, '12th'), (5, 'Edward Norton', 17, '11th'); -- 插入课程数据 INSERT INTO courses (course_id, course_name, teacher, credits) VALUES (101, 'Mathematics', 'Prof. Newton', 4), (102, 'Literature', 'Prof. Shakespeare', 3), (103, 'Physics', 'Prof. Einstein', 4), (104, 'Computer Science', 'Prof. Turing', 3), (105, 'History', 'Prof. Churchill', 3); -- 插入注册数据 INSERT INTO enrollments (enrollment_id, student_id, course_id, enrollment_date) VALUES (1, 1, 101, '2023-01-15'), (2, 1, 103, '2023-01-16'), (3, 2, 102, '2023-01-15'), (4, 3, 101, '2023-01-17'), (5, 4, 104, '2023-01-18'), (6, 5, 105, '2023-01-19'), (7, 2, 103, '2023-01-20');

这些测试数据为我们提供了一个基础,可以用来演示外连接的各种用法。