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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T15:11:49+00:00 2026-06-10T15:11:49+00:00

What is the best way to do that? I tried the following: ByteBuffer cacheBuffer=ByteBuffer.allocateDirect(nm(nLimit,0));

  • 0

What is the best way to do that?

I tried the following:

ByteBuffer cacheBuffer=ByteBuffer.allocateDirect(nm(nLimit,0));  //where nm(nLimit,0) is a large number
double[] cache=cacheBuffer.asDoubleBuffer().array();

But I got this exception:

java.lang.UnsupportedOperationException
at java.nio.DoubleBuffer.array(Unknown Source)

Why?

Edit:

It looks like the javadoc “Returns the double array that backs this buffer (optional operation).” actually means array() method is simply returning the double array that is already backing this buffer. I thought it is going to convert the buffer to double[] somehow. So now it makes sense I got an exception.

  • 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-10T15:11:50+00:00Added an answer on June 10, 2026 at 3:11 pm

    This will only work if you expect your array to merely be a copy.

    final DoubleBuffer buffer = cacheBuffer.asDoubleBuffer();
    final double[] copy = new double[buffer.remaining()];
    buffer.get(copy);
    

    The reason your attempt fails is because array is only supported for non-direct buffers; direct buffers are not backed by an array.

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

Sidebar

Related Questions

Ok so let me try to explain this the best way that i can.
What is the best way to ensure that a user who wants to install
What is the best way to check that I'm logged in to Yii from
I understand that the best way to develop a free and paid version of
I wonder that what is the best way of writing a component for joomla
What is the best way to run Linux commands that require su with Java?
What's the best way to tell my application that the file has been modified
What's the best practices way to test that a model is valid in rails?
What's the best way to implement a Hash that can be modified across multiple
What is the best way to make sure that all the environment variables I

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.