About 238,000 results
Open links in new tab
  1. Simple Calculator using Java Socket Programming

    Jun 2, 2022 · In this article, we will create a simple chat application using Java socket programming. Before we are going to discuss our topic, we must know Socket in Java. Java …

  2. sockets - JAVA Client/Server Calculator Example - Stack Overflow

    Socket socket = new Socket("localhost", CalculatorServer.PORT_NO); // gets the socket's input stream and opens a BufferedReader on it. BufferedReader reader = new BufferedReader(new …

  3. Simple Calculator Using TCP in Java - Online Tutorials Library

    May 15, 2023 · Learn how to create a simple calculator application using TCP in Java. This guide provides step-by-step instructions and code examples. Follow this tutorial to create a simple …

  4. Simple Calculator as a Client-Server Communication (Socket Programming ...

    Socket opSocket = new Socket("134.154.76.104", 8694); DataOutputStream opToClient = new DataOutputStream(opSocket.getOutputStream()); opToClient.writeInt(first);

  5. Simple Calculator using TCP in Java - Never Open Always Closed

    Aug 7, 2024 · In this article, a simple calculator application is implemented wherein the client will send requests to server in form of simple arithmetic equations and server will respond back …

  6. GitHub - inesati/calculator-socket-java: Calculator with server socket

    This project implements a calculator service using server socket in Java, capable of performing the four basic operations: addition, subtraction, multiplication, and division. The calculator …

  7. TCP based calculator (Java) - programmer.group

    Dec 13, 2019 · A calculator based on TCP communication, the client sends data to the server through the button, the server calculates and processes the data, and sends the calculation …

  8. Simple Calculator using TCP in Java - GeeksforGeeks

    Jun 28, 2021 · In this article, a simple calculator application is implemented wherein the client will send requests to server in form of simple arithmetic equations and server will respond back …

  9. Building a Multi-Client Server using Java Multithreading

    Aug 23, 2023 · In this tutorial, we’ll delve into the world of multithreading and network programming using Java to build a multi-client calculator server. I will guide you through the …

  10. Creating calculator service with Java Socket and ServerSocket

    Jun 9, 2016 · I've tried to create a basic server with Java's ServerSocket and Socket clases. The idea is that the client has to send the server a number and an operation, and the server just …

Refresh