We're a community of 1076K IT Pros here for help, advice, solutions, professional growth and fun. Join us!
1,075,987 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Start New Discussion Reply to this Discussion

how to free memory of byte array

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:(

Attachments filesplitandjoin.java (1.1KB)
3
Contributors
2
Replies
1 Day
Discussion Span
1 Year Ago
Last Updated
3
Views
Question
Answered
sathya88
Junior Poster in Training
55 posts since Sep 2010
Reputation Points: 10
Solved Threads: 3
Skill Endorsements: 0

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.

Taywin
Posting Maven
2,633 posts since Apr 2010
Reputation Points: 275
Solved Threads: 375
Skill Endorsements: 17

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.

masijade
Industrious Poster
Team Colleague
4,253 posts since Feb 2006
Reputation Points: 1,484
Solved Threads: 494
Skill Endorsements: 17
Question Answered as of 1 Year Ago by masijade and Taywin

This question has already been solved: Start a new discussion instead

Post: Markdown Syntax: Formatting Help
 
You
View similar articles that have also been tagged:
 
© 2013 DaniWeb® LLC
Page rendered in 0.0666 seconds using 2.69MB