I'm completely stumped.. Seems like there'd be a simple solution

private Byte[] arrayOfBytes = null;    

public Data(String input) {
    arrayOfBytes = new Byte[input.getBytes().length];
    arrayOfBytes = input.getBytes();
}

Throws the follwing error:

incompatible types
    required: java.lang.Byte[]
    found: byte[]
link|improve this question
1  
Auto-boxing just handles the conversion of values not type casting – Kennet Feb 16 at 19:24
feedback

5 Answers

up vote 4 down vote accepted

getBytes() from String returns a byte[] and you are trying to affect it to a Byte[].

byte is a primitive whereas Byte is a wrapper class (kind of like Integer and int).

What you can do is change :

private Byte[] arrayOfBytes = null;

to :

private byte[] arrayOfBytes = null;
link|improve this answer
That definitely clears things up, thank you – marshmallow Feb 16 at 19:20
@marshmallow You're welcome. – talnicolas Feb 16 at 19:21
feedback

So try:

private byte[] arrayOfBytes = null;    

public Data(String input) {
    arrayOfBytes = new byte[input.getBytes().length];
    arrayOfBytes = input.getBytes();
}
link|improve this answer
Thanks for the quick response! But isn't this exactly what I wrote, line for line? – marshmallow Feb 16 at 19:19
@marshmallow: nope change Byte to byte. – RanRag Feb 16 at 19:20
1  
I see it now, thanks. Byte is an object, byte is primitive. – marshmallow Feb 16 at 19:24
feedback

Byte is an Object, while byte is a primative. Like the difference between Integer and int.

link|improve this answer
Good analogy, thank you I understand now – marshmallow Feb 16 at 19:20
feedback

getBytes() return a byte[] array. You are assigning to Byte[] array.

So, this should work

private byte[] arrayOfBytes = null;    

public Data(String input) {
    arrayOfBytes = new Byte[input.getBytes().length];
    arrayOfBytes = input.getBytes();
}

The Byte class wraps a value of primitive type byte in an object. An object of type Byte contains a single field whose type is byte.

link|improve this answer
feedback
public Data(String input) {
    arrayOfBytes = new byte[input.getBytes().length];// this line is useless
    arrayOfBytes = input.getBytes();
}
link|improve this answer
Embarrassing, thanks for the heads up – marshmallow Feb 16 at 19:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.