-3
 String item="stringItem";

需要将此字符串项转换为字节数组

 byte[] byteItemArray = stringItem.getByte();

这会引发类转换异常。我应该使用类型转换吗?

4

3 回答 3

2

尝试byte [] val= ((String) getValue(key)).getBytes();

于 2012-11-08T09:09:53.077 回答
1

由此我怀疑这条线导致了类转换异常

(byte[]) getValue(key);

getValue() 返回什么。如果它没有返回 byte[] 的对象,您将得到异常。

于 2012-11-08T09:07:59.290 回答
0

尝试这个:

(byte[]) getValue(key).getBytes();
于 2012-11-08T09:36:47.547 回答