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

We use this small utility method. But we dont like it. Since it's not very crucial ( that work anyway ... ) , we have forget it. But that's ugly, because we have to go through the whole array, only to convert it from Byte[] to byte[]. I'm looking

  • for a way to cast the Byte [] in byte [] without go throu it
  • or for a utility method for cast a List into string

 

  public static String byteListToString(List<Byte> l, Charset charset) {
    if (l == null) {
        return "" ;
    }

    byte[] array = new byte[l.size()];
    int i = 0;

    for (Byte current : l) {
        array[i] = current;
        i++;
    }

    return new String(array, charset);
}
share|improve this question
2  
First thought... are you refering to methods as 'she'? – Simon Svensson Jul 8 '09 at 9:02
why not she? Ladies are the logical ones – Rich Seller Jul 8 '09 at 9:08
3  
Asker is French; French for method is 'la methode' (French being a language with gender); natural translation into English produces 'she'. I think it's amusing :) If cars and ships can traditionally be female, why not methods? – AakashM Jul 8 '09 at 9:09
2  
there are no elegant ways in Java to unbox an array as a whole – dfa Jul 8 '09 at 9:12
1  
Haven't tested this, but does this work: new String(l.toArray(new byte[0])); ? – Tim Jul 8 '09 at 9:17
show 2 more comments

7 Answers

up vote 7 down vote accepted

Your method is pretty much the only way to do it. You may find an external library that does all or part of it, but it will essentially do the same thing.

However, there is one thing in your code that is a potential problem: When calling new String(array), you are using the platform default encoding to convert the bytes to characters. The platform encoding differs between operating system and locale settings - using it is almost always a bug waiting to happen. It depends on where you're getting those bytes from, but their encoding should be specified somewhere, passed as argument to the method and used for the conversion (by using the String constructor with a second parameter).

share|improve this answer
+1 for pointing out the encoding problem – dfa Jul 8 '09 at 10:57
import org.apache.commons.lang.ArrayUtils;

...

Byte[] bytes = new Byte[l.size()];
l.toArray(bytes);

byte[] b =  ArrayUtils.toPrimitive(bytes);
share|improve this answer
1  
Isn't ArrayUtils part of apache commons? – Emil H Jul 8 '09 at 8:50
Yes it is, added the import, thanks – Rich Seller Jul 8 '09 at 8:58
1  
I don't think this is much of an improvement - you are adding a dependency to a 3rd party library, which internally will probably do something similar to the above code anyway. – Jon Jul 8 '09 at 8:59
@Jon: I partially agree - I dislike adding third party dependencies just for the odd util. method but if this dependency exists already then I think it makes the code more succinct and readable. – Adamski Jul 8 '09 at 9:02
@Jon I too partially agree, but commons-lang is probably one of the safest third-party libraries to use, asd as Adamski says you'd probably end up using it more than once. – Rich Seller Jul 8 '09 at 9:06

without any additional library (e.g. apache commons) your method is fine

share|improve this answer

Minor nit:

if (l == null || l.isEmpty() ) {
    return "" ;
}

to avoid creating empty Strings for empty lists.

share|improve this answer

You could use java.nio and come up with something like this

public static String byteListToString(List<Byte> l, Charset cs)
throws IOException
{
	final int CBUF_SIZE = 8;
	final int BBUF_SIZE = 8;

	CharBuffer cbuf = CharBuffer.allocate(CBUF_SIZE);
	char[] chArr = cbuf.array();
	ByteBuffer bbuf = ByteBuffer.allocate(BBUF_SIZE);
	CharsetDecoder dec = cs.newDecoder();
	StringWriter sw = new StringWriter((int)(l.size() * dec.averageCharsPerByte()));

	Iterator<Byte> itInput = l.iterator();
	int bytesRemaining = l.size();
	boolean finished = false;
	while (! finished)
	{
		// work out how much data we are likely to be able to read
		final int bPos = bbuf.position();
		final int bLim = bbuf.limit();
		int bSize = bLim-bPos;
		bSize = Math.min(bSize, bytesRemaining);
		while ((--bSize >= 0) && itInput.hasNext()) 
		{
			bbuf.put(itInput.next().byteValue());
			--bytesRemaining;
		}
		bbuf.flip();
		final int cStartPos = cbuf.position();
		CoderResult cr = dec.decode(bbuf, cbuf, (bytesRemaining <= 0));
		if (cr.isError()) cr.throwException();
		bbuf.compact();
		finished = (bytesRemaining <= 0) && (cr == CoderResult.UNDERFLOW);
		final int cEndPos = cbuf.position();
		final int cSize = cEndPos - cStartPos;
		sw.write(chArr, cStartPos, cSize);
		cbuf.clear();
	}
	return sw.toString();
}

but I really don't think I'd recommend for something this simple.

share|improve this answer

One option might be to use StringBuilder:

public static String byteListToString(List<Byte> l) {
    if (l == null) {
        return "" ;
    }
    StringBuilder sb = new StringBuilder(l.size());

    for (Byte current : l) {
        sb.append((char)current);
    }

    return sb.toString();
}

Or, if you need character conversion

public static String byteListToString(List<Byte> l) {
    if (l == null) {
        return "" ;
    }
    ByteArrayOutputStream bout = new ByteArrayOutputStream(l.size());

    for (Byte current : l) {
        bout.write(current);
    }

    return bout.toString("UTF-8");
}

If you are aggregating bytes, try ByteArrayOutputStream in the first place instead of List of bytes. Note: Watch out for the UnsupportedEncodingException - you'll need to try-catch it somewhere.

share|improve this answer
Both snippets are much more slow and memory inefficient, compared to the one posted by OP. – Frozen Spider Nov 26 '11 at 9:29

Check out the BitConverter class, I think it does what you want. Use it in combination with the List.toArray() method.

share|improve this answer
Why the downvote? It does exactly what you want??? – Colin Jul 8 '09 at 8:56
1  
This is a java question, not .net. – Kees de Kooter Jul 8 '09 at 8:57
It's pretty interesting though that the code looks exactly like C#. If it wasn't for the "Java" tag then there would be no way to tell. Perhaps we need a clearer way to indicate language in programming questions where there might be ambiguity. – Jon Grant Jul 8 '09 at 9:02
2  
"for (Byte current : l)" <-- not C# – AakashM Jul 8 '09 at 9:07
Sorry, my bad.... Agree with Jon here though. – Colin Jul 8 '09 at 9:22
show 2 more comments

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.