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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T01:45:47+00:00 2026-05-23T01:45:47+00:00

i’m working in a project where i need to read some values and send

  • 0

i’m working in a project where i need to read some values and send through socket connection.
This is format of the package that i must create:
enter image description here

i must read these values (i don’t know what king of type it must be each value, int or string, etc):
type : type of operation (how get 4 bits only ? )
reserverd : i will fill with 0’s
origin: who is sending the message
receiver: who is to receive the message
algorithm: which algorithm is goona to be used to encrypt the message
padding: use it in the encrypt algorithm
mode : which mode to encrypt

i must read this values and create this package that must have 7 bytes only.

how can i do that ?

it must be something like this i think:

byte[] r = new byte[]{
               type+reserverd, 
               origin_1_byte, origin_2_byte, 
               receiver_1_byte, receiver_2_byte, 
               algorithm+padding, 
               mode};

UPDATE:

ByteBuffer buffer = ByteBuffer.allocate(100);
// read data into buffer
buffer.rewind();
buffer.order(ByteOrder.LITTLE_ENDIAN);
// 0xf and co mask off sign extension -> handle byte as unsigned
int type = (buffer.get() >> 4) & 0xf; // 15 in decimal

buffer.rewind();
buffer.put((byte)(type << 4));
System.out.println("type = " + type);


output : 0 (why ?)

Any ideas ?

  • 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-23T01:45:48+00:00Added an answer on May 23, 2026 at 1:45 am

    Just use a ByteBuffer and the nio package. That way you can easily read the data from the network and don’t have to worry about Endianess (that’s important! If you use streams you pretty much have to implement the shifting yourself – although that could be a good exercise). Don’t forget to set the buffers endianness to the correct value. We use ints internally because a) all mathematical operations return ints anyway and b) you are able to handle the values as unsigned.

        ByteBuffer buffer = ByteBuffer.allocate(100);
        // read data into buffer
        buffer.rewind();
        buffer.order(ByteOrder.LITTLE_ENDIAN);
                // 0xf and co mask off sign extension -> handle byte as unsigned
        int type = (buffer.get() >> 4) & 0xf; 
        int origin = buffer.getShort() & 0xffff;
        int receiver = buffer.getShort() & 0xffff;
        // and so on
    

    to write the data back you pretty much do the reverse:

        ByteBuffer buffer = ByteBuffer.allocate(100);
        buffer.rewind();
        buffer.put((byte)(type << 4));
        buffer.putShort((short)origin);
        // and so on
    

    Edit:
    Usually you’d read the data directly into a ByteBuffer from the Network channel and use the Java NIO package. A quick tutorial is here. But since you already have the Socket we’ll make it a bit easier. Note that I’ve ignored all error checking for breviety. Using an OutputStream and WritableByteChannel (with write) works in the other direction.

    InputStream is = socket.getInputStream();
    ReadableByteChannel source = Channels.newChannel(istream);
    ByteBuffer buffer = ByteBuffer.allocateDirect(headerSize);
    source.read(buffer);
    // now header is in buffer and can be used as seen above. 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

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.