Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the maximum file size 32 bit java can access?

Is this architecture dependent?

share|improve this question

2 Answers

up vote 5 down vote accepted

2^63-1 bytes (because the Java API uses 64bit integers for file sizes) or platform dependent (if the platform has some limitations, for example FAT32).

share|improve this answer

And it has nothing to do with '32-bit' Java. That describes the memory address space, not the file system.

share|improve this answer
Pardon my misconception. – C. Ross Apr 10 '10 at 0:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.