当前位置: 技术问答>java相关
int型(or short)怎样转换为byte[]型啊?新手求救
来源: 互联网 发布时间:2015-04-28
本文导语: 有没有类似string的那种 String str= "sdasaf"; byte[] byt= str.getBytes(); 的直接转换方法啊? 大虾救命!!! | public byte[] intTobytes(int number,byte[] source) { byte [] ret=null; if(source.length>8)&0xff);//还...
有没有类似string的那种
String str= "sdasaf";
byte[] byt= str.getBytes();
的直接转换方法啊?
大虾救命!!!
String str= "sdasaf";
byte[] byt= str.getBytes();
的直接转换方法啊?
大虾救命!!!
|
public byte[] intTobytes(int number,byte[] source)
{
byte [] ret=null;
if(source.length>8)&0xff);//还可以转换成4个字节的。
return ret;
}
{
byte [] ret=null;
if(source.length>8)&0xff);//还可以转换成4个字节的。
return ret;
}
|
public class TestByte {
public static void main(String[] args) {
byte[] ss = TestByte.intToByte(107655646);
for (int i = 0 ; i = 8;
if (s == 0) break;
}
byte[] rt = new byte[pos + 1];
for (int j = 0 ; j
public static void main(String[] args) {
byte[] ss = TestByte.intToByte(107655646);
for (int i = 0 ; i = 8;
if (s == 0) break;
}
byte[] rt = new byte[pos + 1];
for (int j = 0 ; j