how to free memory of byte array...


code

for(int j=0;j<count;j++){

buffer=null; //free the memory by set as a null but not working????? shows array index out of bound exception for the second time
buffer= new byte[size]; //byte mem alloc

temp2=di.read(buffer,total,size);// read buffer

total=total+temp2;
fo=null;
ds=null;
fo= new FileOutputStream(flist[j]);
ds= new DataOutputStream(fo);
ds.write(buffer,0,size);
System.out.println("write: "+(j+1));
fo.close();
ds.close();

}

exception occur at run time...

Exception in thread "main" java.lang.IndexOutOfBoundsException
        at java.io.FileInputStream.readBytes(Native Method)
        at java.io.FileInputStream.read(Unknown Source)
        at java.io.DataInputStream.read(Unknown Source)
        at filesplitandjoin.main(filesplitandjoin.java:57)

src code attached:(

Recommended Answers

All 2 Replies

You cannot set a null value to a primitive array. You could initialize an array size 0 instead...

buffer = new byte[0];

This mean any previous declaration/used will be marked as garbage. That means the GC (Garbage Collector) will free up the memory whenever it runs.

You cannot set a null value to a primitive array. You could initialize an array size 0 instead...

Uhm, Yes, you can. You cannot assign null to an element of the array but you sure can assign null to the array reference (which is what the OP did).

@OP your problem is that the second argument in your "read" call is the offset into the byte array (that is the first argument) which tells read where to start adding the bytes it reads, and "total" is probably already as large as size making that write beyond the end of the array.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.