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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T13:29:53+00:00 2026-05-11T13:29:53+00:00

Learning Java, so be gentle please. Ideally I need to create an array of

  • 0

Learning Java, so be gentle please. Ideally I need to create an array of bytes that will point to a portion of a bigger array:

byte[] big  = new byte[1000];  // C-style code starts load(file,big);  byte[100] sub = big + 200;   // C-style code ends 

I know this is not possible in Java and there are two work-arounds that come to mind and would include:

  1. Either copying portion of big into sub iterating through big.

  2. Or writting own class that will take a reference to big + offset + size and implementing the ‘subarray’ through accessor methods using big as the actual underlying data structure.

The task I am trying to solve is to load a file into memory an then gain read-only access to the records stored withing the file through a class. The speed is paramount, hence ideally I’d like to avoid copying or accessor methods. And since I’m learning Java, I’d like to stick with it.

Any other alternatives I’ve got? Please do ask questions if I didn’t explain the task well enough.

  • 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. 2026-05-11T13:29:54+00:00Added an answer on May 11, 2026 at 1:29 pm

    Creating an array as a ‘view’ of an other array is not possible in Java. But you could use java.nio.ByteBuffer, which is basically the class you suggest in work-around #2. For instance:

    ByteBuffer subBuf = ByteBuffer.wrap(big, 200, 100).slice().asReadOnlyBuffer(); 

    No copying involved (some object creation, though). As a standard library class, I’d also assume that ByteBuffer is more likely to receive special treatment wrt. ‘JIT’ optimizations by the JVM than a custom one.

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

Sidebar

Ask A Question

Stats

  • Questions 120k
  • Answers 120k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Here is the code which creates HINTERNET session and uses… May 12, 2026 at 12:04 am
  • Editorial Team
    Editorial Team added an answer Well for one thing, you're mostly ignoring the value returned… May 12, 2026 at 12:04 am
  • Editorial Team
    Editorial Team added an answer SHOW CREATE TABLE mytable It will show DELAY_KEY_WRITE = 1… May 12, 2026 at 12:04 am

Related Questions

I'm stuck on a portion of the Java tutorial, specifically this exercise . The
So I'm learning java, and I have a question. It seems that the types
I've finally gotten around to learning Java and am looking for some documentation for
I am learning JSP and Java at the moment and wrote a (very) simple

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.