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.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
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.