我必须在我的Android应用程序中填写一个byte []。有时,这个大于4KB。 我像这样初始化我的byte []:
int size = ReadTools.getPacketSize(ptr.dataInputStream);
byte[] myByteArray = new byte[size];
这里,我的尺寸= 22625.但是当我按照这样填写我的字节[]时:
while (i != size) {
myByteArray[i] = ptr.dataInputStream.readByte();
i++;
}
但是当我打印我的byte []的内容时,我有一个大小= 4060的byte []。 如果这个大于4060,Java会拆分我的byte []吗?如果是的话,我怎么能有一个[]优于4060的字节?
这是我的完整代码:
public class ReadSocket extends Thread{
DataInputStream inputStream;
BufferedReader reader;
GlobalContent ptr;
public ReadSocket(DataInputStream inputStream, GlobalContent ptr)
{
this.inputStream = inputStream;
this.ptr = ptr;
}
public void run() {
int i = 0;
int j = 0;
try {
ptr.StatusThreadReadSocket = 1;
while(ptr.dataInputStream.available() == 0)
{
if(ptr.StatusThreadReadSocket == 0)
{
ptr.dataInputStream.close();
break;
}
}
if(ptr.StatusThreadReadSocket == 1)
{
int end = ReadTools.getPacketSize(ptr.dataInputStream);
byte[] buffer = new byte[end];
while (i != end) {
buffer[j] = ptr.dataInputStream.readByte();
i++;
j++;
}
ptr.StatusThreadReadSocket = 0;
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
...
}
答案 0 :(得分:1)
Java不会拆分任何东西。您应该发布重现错误的最小代码,并告诉ReadTools
来自哪里。
这里有两个选项:
ReadTools.getPacketSize()
返回4096
myByteArray
重新分配给另一个阵列您应该发布完整的代码并告诉您使用的库。可能会有像
这样的方法read(byte[] buffer, int offset, int length);
如果您只需要批量读取内存中的输入内容,那么这将为您节省一些打字并提供更好的性能