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

  • Home
  • SEARCH
  • 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 trying to find the most efficient way of running multiple (> 1000)
I have a requirement which says I have to create only once class file
I have a directory of 9 images: image_0001, image_0002, image_0003 image_0010, image_0011 image_0011-1, image_0011-2,
Building an application to calculate metrics on Service Level Agreements. I have access to
I have an issue right now where I believe my cold fusion code is
I need to extract formatted text snippets of a Word document and store it
I have a PHP based site with dynamic pages , such as /page.php?ID=1. The
In my Android app, I have a Bitmap object and an int[]. One algorithm
[Edit]: I figured out how to do this on my own. I posted my
I would like to call a cron job from within a PHP script. 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.