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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T09:33:08+00:00 2026-05-23T09:33:08+00:00

I am looking for high performance Java library that provides methods that allows me

  • 0

I am looking for high performance Java library that provides methods that allows me to get:

  1. Current hour (0-24)
  2. Current day (1-31)
  3. Current week (1-52)
  4. Current month (1-12)
  5. Current season (1-4)
  6. Current year (YYYY or YY)

Performance is a most important issue for me. This is why I cannot use standard Calendar class. The best would be solution that does all calculations without creating new objects.

ADDED: To clarify I will mention one more time: more that 100000 operations per second.

  • 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-23T09:33:08+00:00Added an answer on May 23, 2026 at 9:33 am

    You could actually use the excellant joda-time library to do this. The Chronology implementations in joda provide the logic behind the DateTime getHour getDay type methods. There is no problem using it directly if you wish to skip creating DateTime instants.

    long msSinceEpoch = System.currentTimeMillis();
    
    Chronology chronology = ISOChronology.getInstanceUTC() // This can be static
    
    chronology.hourOfDay().get(msSinceEpoch);
    chronology.dayOfMonth().get(msSinceEpoch);
    chronology.weekOfWeek().get(msSinceEpoch);
    chronology.monthOfYear().get(msSinceEpoch);
    chronology.years().get(msSinceEpoch);
    

    Session isn’t something that joda has a concept of. You will have to work it out from the month given your own rules.

    See joda-time documentation on Chronology

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

Sidebar

Related Questions

I am looking for a high performance logging library that I will use on
I am looking for a high-performance graphic library for .NET and Mono. I have
I'm looking for an elegant, high performance solution to the following problem. There are
We have a large high-performance software system which consists of multiple interacting Java processes
I currently use Berkeley DBs fronted by a Java server for a high-performance disk-backed
I'm looking for a Java Profiler for use in a very high demand production
I'm looking for high-resolution timing code for iPhone, in order to do some performance
This is a very high-level question. I'm looking for insight into this problem that
Looking for an example that: Launches an EXE Waits for the EXE to finish.
Looking for a Linux application (or Firefox extension) that will allow me to scrape

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.