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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T04:36:41+00:00 2026-06-15T04:36:41+00:00

I want to send a byte Array of 256 byte length, it have to

  • 0

I want to send a byte Array of 256 byte length, it have to be 128 byte of a string and the same length with another string ( lengths are just for testing purposes).

This is my code:

public void packetCompose(String user, String password) {
    //insert user in 128 bytes length, same with password 
    //and make a 256 length byte array to send
    byte[] userBytes = user.getBytes();
    byte[] passwordBytes = password.getBytes();
    byte[] buf = new byte[256];
}

I want to userBytes be 128 bytes length, even if there are more bytes than needed, and the same with passwordBytes. Then make buf be like userBytes followed by passwordBytes.

Any suggestions? thanks in advance

  • 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-15T04:36:49+00:00Added an answer on June 15, 2026 at 4:36 am

    Just copy the bytes into the destination buf array.

    System.arraycopy( userBytes    , 0, buf,   0, Math.min( userBytes.length, 128 ) );
    System.arraycopy( passwordBytes, 0, buf, 128, Math.min( userBytes.length, 128 ) );
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i want to send a byte array on udp through an ansi c program
I have to send a byte array (encoded photo) from my PHP client to
I want to send a byte array from a web service to a client
I have c++ dll with class in wich I want to send string from
I want to send a few variables and a string with the POST method
I have an imageview in listview in first activity, I want to send my
How do I convert a structure to a byte array in C#? I have
I have created csv file at server-side. Now I want to send it to
Hi I have TCP/IP client server application. i want to send large serialized object
I have a .NET web service that takes a byte array. I have a

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.