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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T21:31:16+00:00 2026-05-26T21:31:16+00:00

Is there an equivalent function to this Python function in Java? struct.unpack(fmt, string) I’m

  • 0

Is there an equivalent function to this Python function in Java?

struct.unpack(fmt, string)

I’m trying to port a parser written in Python to Java, and I’m looking for a way to implement the following line of code:

handle, msgVer, source, startTime, dataFormat, sampleCount, sampleInterval, physDim,  digMin, digMax, physMin,  physMax,  freq, = unpack(self.headerFormat,self.unprocessed[pos:pos+calcsize(self.headerFormat)])

I’m using this in the context of a project where I receive bytes from the network and need to extract a specific part of the bytes to display them.

[EDIT 2]

The conclusion I had posted as an update was wrong. I deleted it to avoid misleading others.

  • 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-26T21:31:16+00:00Added an answer on May 26, 2026 at 9:31 pm

    I am not aware of any real equivalent to Python’s unpack in Java.

    The conventional approach would be to read the data from a stream (originating either from a socket, or from a byte array read from the socket, via a ByteArrayInputStream) using a DataInputStream. That class has a set of methods for reading various primitives.

    In your case, you would do something like:

    DataInputStream in;
    char[] handle = new char[6]; in.readFully(handle);
    byte messageVersion = in.readByte();
    byte source = in.readByte();
    int startTime = in.readInt();
    byte dataFormat = in.readByte();
    byte sampleCount = in.readByte();
    int sampleInterval = in.readInt();
    short physDim = in.readShort();
    int digMin = in.readInt();
    int digMax = in.readInt();
    float physMin = in.readFloat();
    float physMax = in.readFloat();
    int freq = in.readInt();
    

    And then turn those variables into a suitable object.

    Note that i’ve opted to pack each field into the smallest primitive which will hold it; that means putting unsigned values into signed types of the same size. You might prefer to put them in bigger types, so that they keep their sign (eg putting an unsigned short into an int); DataInputStream has a set of readUnsignedXXX() methods that you can use for that.

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

Sidebar

Related Questions

Is there a java equivalent of the python eval function? This would be a
Is there any Ruby equivalent for Python's builtin zip function? If not, what is
Is there any equivalent function that returns the character at position X in PHP?
Is there any equivalent function of memset for vectors in C++ ? (Not clear()
I'm wondering if there is an equivalent function to PHP's call_user_func() in ASP.NET application.
Short version question : Is there navigator.mozIsLocallyAvailable equivalent function that works on all browsers,
Is there a built in function equivalent to .NET's Guid.NewGuid(); in Cocoa? My desire
Is there an equivalent of the Oracle NVL function in SAS? For example, if
Is there an equivalent to Perl's format function in PHP? I have a client
My question is simple. Is there a PHP's preg_match() function equivalent in the C++

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.