I am getting following Error "Java.io.IO.Exception; there is not enough space on the disk" while running my J2ME Application can any body Please tell me what type of the Error is this and why it is coming. This error is coming when I am uploading the data from mobile to the server. I am not understanding where is the error it is at server side or at mobile side.
Asked
Active
Viewed 2.4k times
-2
-
5There is not enough space on the disk. – Michael Petrotta Nov 08 '11 at 06:01
-
Try deleting your unused .Jar files / Games & then try again. – Lucifer Nov 08 '11 at 06:10
-
Thanks for you response so according to you ppl their is not enough space on my mobile it self and problem is not of the server am I correct OK then i will delete or uninstall some of my JAR files from mobile and tried it out. Please let me know if I am wrong. – mayur rahatekar Nov 08 '11 at 06:17
-
At what particular point you are getting this error ? time of installation or at running time ? – Lucifer Nov 08 '11 at 06:21
-
I am getting error while running my application and we are using 5300 Nokia mobile. – mayur rahatekar Nov 08 '11 at 07:03
-
Found that the drive in which my project was there F:Drive it was almost full so cut - paste my project to another drive on my pc. – Prajwal Waingankar Oct 18 '22 at 07:25
1 Answers
7
With respect to your question, as per the given information,
Java.io.IOException; there is not enough space on the disk
is thrown, say if you try copying something to a destination drive, if the drive is full, you get the exception. The Java.io.IOException
exceptions produced by failed or interrupted I/O operations, in this case an interupted IO operation and the reason is there is not enough space on the disk
, I think its pretty clear from the message.

Anthony Pegram
- 123,721
- 27
- 225
- 246

COD3BOY
- 11,964
- 1
- 38
- 56