Skip to content

gabrielmjr/Terminal-Local-Chat

Repository files navigation

Terminal Local Chat

This project is a terminal local chat between two devices where one is hosting (by turning on hotspot) and other is client (by connecting to the turned on hotspot).

Build state

How it works?

As the name suggests, it works locally between two devices (Later on this number will be increased), where one turns on hotspot, we call this device as server, other turns on WI-Fi and connects to the hotspot, we call this device as client, both run the jar file, follow the instructions, after all, they can chat together locally using terminal.

To make they communicate themselves, I used server socket, where after one device connect to the other, both sides waits for the received message and print it from a background Thread and while the background thread waits for the received message, the main thread is sending the message by using socket connections and streams does this conversion from Strings to byte arrays and the reverse work.

The String before converted to bytes and be sent, it's serialized to JSON and then converted to bytes and sent, who receives the JSON String only does the reverse work of who sends it (I'm about the codes, not persons).

Get started

To use of the terminal local chat, you must to:

  1. Have two devices (and terminal in them).
  2. In the server device, you must turn on hotspot.
  3. In the client device, you must connect to the server's hotspot, using WI-FI.
  4. Have a Java Envinronment.
  5. Download a release executable jar file (I recommend the latest). [Optionally you can clone the repository and compile it yourself]].
  6. Run the jar file by using:
   java -jar terminal-local-chat_<version>_.jar
  1. The console will show you:
   Enter your username/nickname: 

Just enter an username.

Note

This user/nick name will be shown in the other device.

  1. The console will show you:
  Type 1 to be the server (Turn on hotspot).
  Type 2 to be the client (Turn on wifi).
  1. To the device where hotspot is on, enter 1 and the terminal will show you:
  >>> Enter the port to listen: 
  • Just choose the port (1024-65535) and wait the other device to connect. The terminal will show you:
  Serving in ip: [your hotspot ip], port: [choosen port]

Use the hotspot ip and choosen port in the other device doing:

  1. In the device where the WI-FI is connected, enter 2 and the terminal will show you:
  >>> Enter the ip address: 
  • Enter the ip shown in the device where hotspot is on, then the terminal will show you;
  Enter the listened port: 
  • Enter the choosen port and voilà, they're connected to each other, you're able to send messages, just enter something and it will show you in the other device's terminal.

License

Copyright 2024 Gabriel MJr.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About

This project is a terminal local messenger between devices using hotspot/wifi

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages