├── .gitignore ├── .idea ├── compiler.xml ├── gradle.xml ├── misc.xml ├── modules.xml └── runConfigurations.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── libs │ └── netty-all-4.1.23.Final.jar ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── ifreecomm │ │ └── nettydemo │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── ifreecomm │ │ │ └── nettydemo │ │ │ ├── Const.java │ │ │ ├── MainActivity.java │ │ │ ├── NettyClient.java │ │ │ ├── NettyClientHandler.java │ │ │ ├── NettyListener.java │ │ │ ├── adapter │ │ │ └── LogAdapter.java │ │ │ └── bean │ │ │ └── LogBean.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ └── log_item.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── ifreecomm │ └── nettydemo │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── nettyserver ├── .gitignore ├── build.gradle ├── libs │ └── netty-all-4.1.23.Final.jar ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── ifreecomm │ │ └── nettyserver │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── ifreecomm │ │ │ └── nettyserver │ │ │ ├── EchoServer.java │ │ │ ├── EchoServerHandler.java │ │ │ ├── MainActivity.java │ │ │ ├── NettyListener.java │ │ │ ├── adapter │ │ │ └── LogAdapter.java │ │ │ └── bean │ │ │ └── LogBean.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ └── log_item.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── ifreecomm │ └── nettyserver │ └── ExampleUnitTest.java ├── screenshot ├── clent.gif └── server.gif └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/libs/netty-all-4.1.23.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/libs/netty-all-4.1.23.Final.jar -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/ifreecomm/nettydemo/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/androidTest/java/ifreecomm/nettydemo/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/ifreecomm/nettydemo/Const.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/java/ifreecomm/nettydemo/Const.java -------------------------------------------------------------------------------- /app/src/main/java/ifreecomm/nettydemo/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/java/ifreecomm/nettydemo/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/ifreecomm/nettydemo/NettyClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/java/ifreecomm/nettydemo/NettyClient.java -------------------------------------------------------------------------------- /app/src/main/java/ifreecomm/nettydemo/NettyClientHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/java/ifreecomm/nettydemo/NettyClientHandler.java -------------------------------------------------------------------------------- /app/src/main/java/ifreecomm/nettydemo/NettyListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/java/ifreecomm/nettydemo/NettyListener.java -------------------------------------------------------------------------------- /app/src/main/java/ifreecomm/nettydemo/adapter/LogAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/java/ifreecomm/nettydemo/adapter/LogAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/ifreecomm/nettydemo/bean/LogBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/java/ifreecomm/nettydemo/bean/LogBean.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/log_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/res/layout/log_item.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/ifreecomm/nettydemo/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/app/src/test/java/ifreecomm/nettydemo/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/gradlew.bat -------------------------------------------------------------------------------- /nettyserver/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /nettyserver/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/build.gradle -------------------------------------------------------------------------------- /nettyserver/libs/netty-all-4.1.23.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/libs/netty-all-4.1.23.Final.jar -------------------------------------------------------------------------------- /nettyserver/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/proguard-rules.pro -------------------------------------------------------------------------------- /nettyserver/src/androidTest/java/ifreecomm/nettyserver/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/androidTest/java/ifreecomm/nettyserver/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /nettyserver/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /nettyserver/src/main/java/ifreecomm/nettyserver/EchoServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/java/ifreecomm/nettyserver/EchoServer.java -------------------------------------------------------------------------------- /nettyserver/src/main/java/ifreecomm/nettyserver/EchoServerHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/java/ifreecomm/nettyserver/EchoServerHandler.java -------------------------------------------------------------------------------- /nettyserver/src/main/java/ifreecomm/nettyserver/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/java/ifreecomm/nettyserver/MainActivity.java -------------------------------------------------------------------------------- /nettyserver/src/main/java/ifreecomm/nettyserver/NettyListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/java/ifreecomm/nettyserver/NettyListener.java -------------------------------------------------------------------------------- /nettyserver/src/main/java/ifreecomm/nettyserver/adapter/LogAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/java/ifreecomm/nettyserver/adapter/LogAdapter.java -------------------------------------------------------------------------------- /nettyserver/src/main/java/ifreecomm/nettyserver/bean/LogBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/java/ifreecomm/nettyserver/bean/LogBean.java -------------------------------------------------------------------------------- /nettyserver/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /nettyserver/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /nettyserver/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /nettyserver/src/main/res/layout/log_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/res/layout/log_item.xml -------------------------------------------------------------------------------- /nettyserver/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /nettyserver/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /nettyserver/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /nettyserver/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /nettyserver/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /nettyserver/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /nettyserver/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /nettyserver/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /nettyserver/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /nettyserver/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /nettyserver/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /nettyserver/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /nettyserver/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /nettyserver/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /nettyserver/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /nettyserver/src/test/java/ifreecomm/nettyserver/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/nettyserver/src/test/java/ifreecomm/nettyserver/ExampleUnitTest.java -------------------------------------------------------------------------------- /screenshot/clent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/screenshot/clent.gif -------------------------------------------------------------------------------- /screenshot/server.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thisfeng/NettyDemo/HEAD/screenshot/server.gif -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':nettyserver' 2 | --------------------------------------------------------------------------------