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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T03:08:19+00:00 2026-05-19T03:08:19+00:00

I have a 32-bit integer value and I want to translate that into two

  • 0

I have a 32-bit integer value and I want to translate that into two decimal values. One value from the 5 least significant bits and one decimal value from the rest of the bits (27 bits).

How would I do that in Java?

The only solution I can think of is something like this:


int i = 1073326082;
String binaryString = Integer.toBinaryString(i);
int fiveLeastSigValue = Integer.parseInt(binaryString.substring(27), 2));
int theRest = Integer.parseInt(binaryString.substring(0, 27), 2));

But im sure there is some more efficient way to do this. 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-19T03:08:19+00:00Added an answer on May 19, 2026 at 3:08 am

    Well, I’d imagine:

    int value = ...;
    int leastSignificant = value & 0x1f; // Bottom 5 bits
    int mostSignificant = value >> 5; // Top 27 bits
    

    Adjust the shift operator to “>>>” if you want to 0-extend (i.e. always have positive values).

    I’m not sure what you mean by “partial decimal value” though – “decimal” is usually used to refer to non-integers, but you’re parsing integers. Is this what you want?

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

Sidebar

Related Questions

I have 7 8-bit integer values per record that I want to store in
I have integer values ranging from 32-8191 which I want to map to a
I have two integer arrays which contain numeric values. I want to look through
We have a file that has a 64 bit integer as a string in
If I have an integer that I'd like to perform bit manipulation on, how
Possible Duplicate: how to get bit by bit data from a integer value in
Say that I have an integer-indexed array of length 400, and I want to
I have a 256-bit value in Verilog: reg [255:0] val; I want to define
I have store 111 million key-value pairs (one key can have multiple values -
How can I have a 64-bit integer in PHP? It seems like it is

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.