本次是利用TCP在客户端发送文件流,服务端就接收流,写入相应的文件。

实验的源文件是一个图片,假设地址是D:\\Koala.jpg,接收保存后的图片为D:\\test.jpg
原理就是将文件读取成byte,通过bytebuffer发送即可

客户端
  1. package net.xjdsz.file;
  2. import io.netty.bootstrap.Bootstrap;
  3. import io.netty.buffer.ByteBuf;
  4. import io.netty.buffer.Unpooled;
  5. import io.netty.channel.*;
  6. import io.netty.channel.nio.NioEventLoopGroup;
  7. import io.netty.channel.socket.SocketChannel;
  8. import io.netty.channel.socket.nio.NioSocketChannel;
  9. import java.io.ByteArrayOutputStream;
  10. import java.io.FileInputStream;
  11. import java.io.InputStream;
  12. /**
  13. * Created by dingshuo on 2017/7/6.
  14. */
  15. public class UploadClient {
  16. public static void main(String[] args) throws Exception{
  17. UploadClient client=new UploadClient();
  18. client.connect();
  19. }
  20. public void connect(){
  21. EventLoopGroup group=new NioEventLoopGroup();
  22. try{
  23. Bootstrap b=new Bootstrap();
  24. b.group(group).channel(NioSocketChannel.class)
  25. .option(ChannelOption.TCP_NODELAY,true)
  26. .handler(new ChannelInitializer<SocketChannel>() {
  27. @Override
  28. protected void initChannel(SocketChannel ch) throws Exception {
  29. ch.pipeline().addLast(new ChannelInboundHandlerAdapter(){
  30. @Override
  31. public void channelActive(ChannelHandlerContext ctx) throws Exception {
  32. ByteBuf msg;
  33. InputStream in = new FileInputStream("D:\\Koala.jpg");
  34. ByteArrayOutputStream out = new ByteArrayOutputStream();
  35. byte[] buffer = new byte[1024 * 100];
  36. int n = 0;
  37. while ((n = in.read(buffer)) != -1) {
  38. msg= Unpooled.buffer(buffer.length);
  39. //这里读取到多少,就发送多少,是为了防止最后一次读取没法满填充buffer,
  40. //导致将buffer中的处于尾部的上一次遗留数据也发送走
  41. msg.writeBytes(buffer,0,n);
  42. ctx.writeAndFlush(msg);
  43. msg.clear();
  44. }
  45. System.out.println(n);
  46. }
  47. });
  48. }
  49. });
  50. ChannelFuture f=b.connect("127.0.0.1",20000).sync();
  51. f.channel().closeFuture().sync();
  52. }catch (Exception e){
  53. }finally {
  54. group.shutdownGracefully();
  55. }
  56. }
  57. }

服务端
  1. package net.xjdsz.file;
  2. import io.netty.bootstrap.ServerBootstrap;
  3. import io.netty.buffer.ByteBuf;
  4. import io.netty.channel.*;
  5. import io.netty.channel.nio.NioEventLoopGroup;
  6. import io.netty.channel.socket.SocketChannel;
  7. import io.netty.channel.socket.nio.NioServerSocketChannel;
  8. import io.netty.handler.logging.LogLevel;
  9. import io.netty.handler.logging.LoggingHandler;
  10. import java.io.File;
  11. import java.io.FileOutputStream;
  12. import java.io.IOException;
  13. /**
  14. * Created by dingshuo on 2017/7/6.
  15. */
  16. public class UploadServer {
  17. public void bind(int port) throws Exception{
  18. EventLoopGroup bossGroup=new NioEventLoopGroup();
  19. EventLoopGroup workerGroup=new NioEventLoopGroup();
  20. try{
  21. ServerBootstrap b=new ServerBootstrap();
  22. b.group(bossGroup,workerGroup)
  23. .channel(NioServerSocketChannel.class)
  24. .option(ChannelOption.SO_BACKLOG,1024)
  25. .handler(new LoggingHandler(LogLevel.INFO))
  26. .childHandler(new ChannelInitializer<SocketChannel>() {
  27. @Override
  28. protected void initChannel(SocketChannel ch) throws Exception {
  29. ch.pipeline().addLast(new ChannelInboundHandlerAdapter(){
  30. @Override
  31. public void channelActive(ChannelHandlerContext ctx) throws Exception {
  32. super.channelActive(ctx);
  33. }
  34. @Override
  35. public void channelInactive(ChannelHandlerContext ctx) throws Exception {
  36. super.channelInactive(ctx);
  37. }
  38. @Override
  39. public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {
  40. String path="D:\\test.jpg";
  41. File file=new File(path);
  42. if(!file.exists()){
  43. file.createNewFile();
  44. }
  45. FileOutputStream fos=new FileOutputStream(file,true);
  46. // BufferedOutputStream bufferedOutputStream=new BufferedOutputStream(fos);
  47. ByteBuf buf=(ByteBuf)msg;
  48. byte[] bytes=new byte[buf.readableBytes()];
  49. buf.readBytes(bytes);
  50. System.out.println("本次接收内容长度:" + bytes.length);
  51. try {
  52. // bufferedOutputStream.write(bytes, 0, bytes.length);
  53. // buf.release();
  54. fos.write(bytes);
  55. fos.flush();
  56. } catch (IOException e) {
  57. e.printStackTrace();
  58. }
  59. }
  60. });
  61. }
  62. });
  63. //绑定端口,同步等待成功
  64. ChannelFuture f=b.bind(port).sync();
  65. //等待服务端监听端口关闭
  66. f.channel().closeFuture().sync();
  67. }finally {
  68. //退出,释放资源
  69. bossGroup.shutdownGracefully();
  70. workerGroup.shutdownGracefully();
  71. }
  72. }
  73. public static void main(String[] args) throws Exception{
  74. UploadServer uploadServer=new UploadServer();
  75. uploadServer.bind(20000);
  76. }
  77. }

Netty进行文件传输的更多相关文章

  1. netty 文件传输

    FileServer package com.zhaowb.netty.ch13_1; import io.netty.bootstrap.ServerBootstrap; import io.net ...

  2. RPC基于http协议通过netty支持文件上传下载

    本人在中间件研发组(主要开发RPC),近期遇到一个需求:RPC基于http协议通过netty支持文件上传下载 经过一系列的资料查找学习,终于实现了该功能 通过netty实现文件上传下载,主要在编解码时 ...

  3. Linux主机上实现树莓派的交叉编译及文件传输,远程登陆

    0.环境 Linux主机OS:Ubuntu14.04 64位,运行在wmware workstation 10虚拟机 树莓派版本:raspberry pi 2 B型. 树莓派OS:官网下的的raspb ...

  4. putty提供的两个文件传输工具PSCP、PSFTP详细介绍

    用 SSH 来传输文件 PuTTY 提供了两个文件传输工具 PSCP (PuTTY Secure Copy client) PSFTP (PuTTY SFTP client) PSCP 通过 SSH ...

  5. c# 局域网文件传输实例

    一个基于c#的点对点局域网文件传输小案例,运行效果截图 //界面窗体 using System;using System.Collections.Generic;using System.Compon ...

  6. 使用 zssh 进行 Zmodem 文件传输

    Zmodem 最早是设计用来在串行连接(uart.rs232.rs485)上进行数据传输的,比如,在 minicom 下,我们就可以方便的用 Zmodem (说 sz .rz 可能大家更熟悉)传输文件 ...

  7. 在windows 与Linux间实现文件传输(C++&C实现)

    要实现windows与linux间的文件传输,可以通过socket网络编程来实现. 这次要实现的功能与<Windows下通过socket进行字符串和文件传输>中实现的功能相同,即客户端首先 ...

  8. Windows下通过socket进行字符串和文件传输

    今天在windows平台下,通过socket实现了简单的文件传输.通过实现这一功能,了解基本的windows网络编程和相关函数的使用方法. 在windows平台上进行网络编程,首先都需要调用函数WSA ...

  9. Linux下几种文件传输命令 sz rz sftp scp

    Linux下几种文件传输命令 sz rz sftp scp 最近在部署系统时接触了一些文件传输命令,分别做一下简单记录: 1.sftp Secure Ftp 是一个基于SSH安全协议的文件传输管理工具 ...

随机推荐

  1. 2018-8-10-win10-UWP-修改密码框文字水平

    title author date CreateTime categories win10 UWP 修改密码框文字水平 lindexi 2018-08-10 19:17:19 +0800 2018-2 ...

  2. Android中View的layout mechanism(布局机制)

    layout mechanism Android中View的layout mechanism主要分为两个阶段:measure阶段和layout阶段.layout mechanism按照一定的顺序进行, ...

  3. mongodb的一些简单操作

    mongo 使用 mongod 开机mongod --dbpath c:\mongo mongod --storageEngine mmapv1 --dbpath c:\mongo mongoimpo ...

  4. js中+号强制转换小例子

    1 <script> console.log(([]+{}).length); </script> </head> 输出竟然是: 为什么会是15呢? 因为在+号的强 ...

  5. 安装vagrant&virtualBox

    https://blog.csdn.net/dream_188810/article/details/78218073 VirtualBox是一款开源免费的虚拟机软件(之前一直使用vm,vm功能较多, ...

  6. iOS app 设计推荐

    见微知著,谈移动缺省页设计 http://www.cocoachina.com/design/20150303/11186.html Facebook产品设计总监!设计APP时的14个必考题 http ...

  7. 2019-6-23-开源项目使用-appveyor-自动构建

    title author date CreateTime categories 开源项目使用 appveyor 自动构建 lindexi 2019-06-23 11:47:40 +0800 2019- ...

  8. Java练习 SDUT-3338_计算各种图形的周长(接口与多态)

    计算各种图形的周长(接口与多态) Time Limit: 1000 ms Memory Limit: 65536 KiB Problem Description 定义接口Shape,定义求周长的方法l ...

  9. Java练习 SDUT-2670_3-1 Point类的构造函数

    3-1 Point类的构造函数 Time Limit: 1000 ms Memory Limit: 65536 KiB Problem Description 通过本题目的练习可以掌握类的构造函数的定 ...

  10. HDU 5672 String【尺取法】

    题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=5672 题意: 有一个10≤长度≤1,000,000的字符串,仅由小写字母构成.求有多少个子串,包含有 ...