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 8727327
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T08:24:59+00:00 2026-06-13T08:24:59+00:00

DatagramPacket receivePacket = new DatagramPacket(receiveData, receiveData.length); _socket.receive(receivePacket); String sentence = new String(receivePacket.getData()); InetAddress IPAddress

  • 0
DatagramPacket receivePacket = new DatagramPacket(receiveData,
                                               receiveData.length);

_socket.receive(receivePacket);

String sentence = new String(receivePacket.getData());

InetAddress IPAddress = receivePacket.getAddress();

int port = receivePacket.getPort();

if(sentence.equals("hello")) (...)

Question: Why sentence.equal("hello") isn’t true when sentence is "hello"? Is it because of String’s Constructor String(byte[])?

Who can I deal with that?

Thanks

  • 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-06-13T08:25:00+00:00Added an answer on June 13, 2026 at 8:25 am

    Your string probably contains "hello" but is padded with other junk. You could try

    if (sentence.trim().equals("hello")) {...}
    

    To illustrate:

    String s = new String(new byte[]{0, 1, 'h', 'e', 'l', 'l', 'o', 2, 3});
    System.out.println(s.equals("hello"));
    System.out.println(s.trim().equals("hello"));
    
    false  
    true
    

    Relevant documentation

    • trim
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

public DatagramPacket(byte[] buf,int length) // Constructs a DatagramPacket for receiving packets of length length.
Is there any way to spoof the source IP/Port of a DatagramPacket object in
I've written this code for implementing Wake On Lan: InetAddress address = InetAddress.getByAddress( new
What is a equivalent for this java code in c# DatagramPacket dp = new
I'm developing a chat application in java using DatagramSocket and DatagramPacket . The data
I am creating a server chat program in java using DatagramSocket and datagramPacket im
I've written two programs. Now each program uses threading to send and receive packets
I have 3 nodes A, B and C with their respective port numbers. I'm
I have a simple UDP server that creates a new thread for processing incoming
Im trying to parse a Soap ProbeMatch message with XMLPullParser. I receive this via

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.