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

I have some source code that I need to make runnable under Java 5. Unfortunetly that code uses Arrays.copyOfRange function which was only introduced in Java 6. What would be the most effective way to implement same utility using only Java 5 API?

share|improve this question

3 Answers

up vote 1 down vote accepted

Check out the OpenJDK 6 page - it's open source Java. You can download and read the source code yourself, find out how it's implemented, and add the functionality to the app manually.

share|improve this answer
Thanks for the idea, I found the implementation. – Andrey Adamovich Nov 1 '11 at 17:57
Nice! OpenJDK has been around for a while, and is great for reading up on any concept you want to understand better. – normalocity Nov 1 '11 at 18:00

Here goes the code from OpenJDK for those who are intrested:

public static byte[] copyOfRange(byte[] original, int from, int to) {
    int newLength = to - from;
    if (newLength < 0)
        throw new IllegalArgumentException(from + " > " + to);
    byte[] copy = new byte[newLength];
    System.arraycopy(original, from, copy, 0,
                     Math.min(original.length - from, newLength));
    return copy;
}
share|improve this answer

The fastest way would be to use System.arraycopy. It's what's done by the Arrays class, BTW.

share|improve this answer

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.