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

Ask A Question

Stats

  • Questions 82k
  • Answers 82k
  • 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 function my_rtrim($str, $count) { return substr($str, 0, -$count); } function… May 11, 2026 at 4:39 pm
  • Editorial Team
    Editorial Team added an answer How about this approach? Purely cumulative - no back-tracking, and… May 11, 2026 at 4:39 pm
  • Editorial Team
    Editorial Team added an answer I think your best bet is to nest canvases. One… May 11, 2026 at 4:39 pm

Related Questions

What's the most efficient way to resize large images in PHP? I'm currently using
I have a fairly large program written in C. It spans several files, and
I've recently have a reason to include into our build script the creation of
I am writing a Huffman encoding/decoding tool and am looking for an efficient way

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.