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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T18:39:16+00:00 2026-05-10T18:39:16+00:00

Is there an efficient way to create a file with a given size in

  • 0

Is there an efficient way to create a file with a given size in Java?

In C it can be done with ftruncate (see that answer).

Most people would just write n dummy bytes into the file, but there must be a faster way. I’m thinking of ftruncate and also of Sparse files…

  • 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-10T18:39:17+00:00Added an answer on May 10, 2026 at 6:39 pm

    Create a new RandomAccessFile and call the setLength method, specifying the desired file length. The underlying JRE implementation should use the most efficient method available in your environment.

    The following program

    import java.io.*;  class Test {      public static void main(String args[]) throws Exception {            RandomAccessFile f = new RandomAccessFile('t', 'rw');            f.setLength(1024 * 1024 * 1024);      } } 

    on a Linux machine will allocate the space using the ftruncate(2)

    6070  open('t', O_RDWR|O_CREAT, 0666)   = 4 6070  fstat(4, {st_mode=S_IFREG|0644, st_size=0, ...}) = 0 6070  lseek(4, 0, SEEK_CUR)             = 0 6070  ftruncate(4, 1073741824)          = 0 

    while on a Solaris machine it will use the the F_FREESP64 function of the fcntl(2) system call.

    /2:     open64('t', O_RDWR|O_CREAT, 0666)               = 14 /2:     fstat64(14, 0xFE4FF810)                         = 0 /2:     llseek(14, 0, SEEK_CUR)                         = 0 /2:     fcntl(14, F_FREESP64, 0xFE4FF998)               = 0 

    In both cases this will result in the creation of a sparse file.

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

Sidebar

Related Questions

I am looking for an efficient way to create a file whose size is
Is there an efficient way of detecting if a jpeg file is corrupted? Background
What's the most efficient way to identify a binary file? I would like to
Is there an efficient way to tell if a DOM element (in an HTML
Is there an efficient way to store the compiled regexes (compiled via regcomp(), PCRE)
Is there an efficient way to take a subset of a C# array and
Is there an efficient way to version store procedures written in PL/SQL? (I only
Is there an efficient way to clone an object yet leave out specified properties?
SQL Experts, Is there an efficient way to group runs of data together using
Is there a more efficient way to convert an HTMLCollection to an Array, other

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.