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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T10:35:05+00:00 2026-06-12T10:35:05+00:00

Given a byte array I can make a file from it with the code

  • 0

Given a byte array I can make a file from it with the code

Files.write(String path, byte[] byteArray)

The problem is, since I have to work with extremely large array sizes, and I can’t make an array with a long size

long n = 100000000;
byte byteArray = new byte[n]; //ERROR! Required int, found long

what I do is I have several byte arrays. For example, since I can’t have a 4gb array, I make 20 byte arrays of 200mb. These 20 arrays represent the information of a file. Now, how can I create a file from this byte arrays? The only way I know is using Files.write, but that only works with 1 array.

Thanks in advance.

  • 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-12T10:35:07+00:00Added an answer on June 12, 2026 at 10:35 am

    You could use:

    Files.write(path, bytes, StandardOpenOption.APPEND);
    

    On the calls after the first one.

    A better method (that doesn’t require re-opening the file 20 times) would be using a FileOutputStream like:

    FileOutputStream fos = new FileOutputStream(path);
    for(int i = 0; i < byteArrays.length; ++i)
    {
        fos.write(byteArrays[i]);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I can't write data at index above 128 in byte array. code is given
How can I convert a byte array to a video file? like mp4 Given
What is base64Binary and how can I create base64Binary from a given byte array
I am trying to make a 2D byte array. Can anybody give the code
given that a n-byte array can be represented as a 2*n character string using
I need to write effective and quick method to search byte array for given
It is written byte[][] getImagesForFields(java.lang.String[] fieldnames) Gets an array of images for the given
In my Java Program, I need a byte array from a Hex String. So
Okay, the title isn't very clear. Given a byte array (read from a database
Given that the Windows API function GetGlyphIndices() can translate a 2 byte UNICODE char

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.