Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6979751
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T17:55:33+00:00 2026-05-27T17:55:33+00:00

For this application a command comes in from the user and the server sends

  • 0

For this application a command comes in from the user and the server sends back a reply. The if statement is not working for some reason and for every input it runs sentance = "Unknown Command" + '\n';. I was wondering what I’m doing wrong.

import java.io.*;
import java.net.*;

// SERVER

class StartingPoint {
    public static void main(String argv[]) throws Exception{

        double srvversion = 0.1;
        double cliversion = 0.1;

        String clientSentence;
        String sentance = null;
        String capitalizedSentence;

        //Commands cmds = new Commands();

        ServerSocket welcomeSocket = new ServerSocket(6789);
        System.out.println("Server Started");
        while (true) {

            Socket connectionSocket = welcomeSocket.accept();
            BufferedReader inFromClient = new BufferedReader(
                    new InputStreamReader(connectionSocket.getInputStream()));
            DataOutputStream outToClient = new DataOutputStream(
                    connectionSocket.getOutputStream());
            clientSentence = inFromClient.readLine();
            System.out.println("Received: " + clientSentence);
            capitalizedSentence = clientSentence.toUpperCase();


            if(capitalizedSentence == "VERSION"){
                sentance = "Current Server Version: " + srvversion
                        + " | Current Client Version: " + cliversion + '\n';
            }else{
                sentance = "Unknown Command" + '\n';
            }

            outToClient.writeBytes(sentance);
            System.out.println("Sent: " + sentance);
        }
    }
        }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T17:55:33+00:00Added an answer on May 27, 2026 at 5:55 pm

    You should use .equals() method for comparing strings instead of using ==.

    Change

      if(capitalizedSentence == "VERSION"){
    

    to

      if(capitalizedSentence.equals("VERSION")){
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I going to get the command prompt from my C# application to compile some
I have a silverlight 3 application, that fetches some simple data from a ms-sql-server
This code executes handbrakecli (a command line application) and places the output into a
This is a GUI application (actually MFC). I need a command window with the
I would like to implement a command line interface for a Java application. This
I have a button in my application which is bound to a command. This
when I call Application.Run() on a form, this command halts the program until the
I have this application I'm developing in JSP and I wish to export some
I'm working on this application that's sort of like a blog. I'm thinking about
I have this application that need to do some things in protected paths (like

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.