字节流和字符流

1.Socket通信

try
                {
                    string ip = textBox2.Text.Trim();
                    int port = Convert.ToInt32(textBox3.Text.Trim());
                    byte[] bytes = new byte[16];
                    bytes[0] = (byte)'c';
                    bytes[1] = 0x00;
                    bytes[2] = 0x00;
                    bytes[3] = 0x00;
                    bytes[4] = (byte)Convert.ToInt32(textBox1.Text);
                    bytes[5] = 0x00;
                    bytes[6] = 0x00;
                    bytes[7] = 0x00;
                    bytes[8] = 0x00;
                    bytes[9] = 0x00;
                    bytes[10] = 0x00;
                    bytes[11] = 0x00;
                    bytes[12] = 0x00;
                    bytes[13] = 0x00;
                    bytes[14] = 0x00;
                    int count = 0;
                    for (int i = 0; i < 15; i++)
                    {
                        count += bytes[i];
                    }
                    bytes[15] = (byte)(count & 0xFF);
                    Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
                    socket.Connect(ip, port);
                    socket.Send(bytes);
                    Thread.Sleep(100);
                    byte[] retBytes = new byte[16];
                    int num = socket.Receive(retBytes);
                }
                catch (Exception ex)
                {

                }

 

2.字节流 复制文件

InputStream is = new FileInputStream("e:/02.EasyAccess.exe");
OutputStream os = new FileOutputStream("d:/123.exe");
byte[] revBytes = new byte[16];
int count = -1;
while ((count = is.read(revBytes)) != -1) {
    os.write(revBytes, 0, count);
}
os.close();
is.close();

3.字符流,复制文件中的内容

Reader reader = new FileReader("e:/aaa.txt");
BufferedReader br = new BufferedReader(reader);
Writer writer = new FileWriter("d:/aaaa.txt");
BufferedWriter bw = new BufferedWriter(writer);
String str;
while ((str = br.readLine()) != null) {
    System.out.println(str);
    bw.write(str + "\r\n");
}
bw.close();
br.close();
writer.close();
reader.close();

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

知音难遇

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值