LinkedList<DatagramPacket> queue = new LinkedList<DatagramPacket>();
for (int i = 0; i < queue.size(); i++)
{
System.out.println("1: This prints.");
System.out.println("2: This doesn't: " + new String(queue.get(i).getData()));
int start = (new String(queue.get(i).getData())).indexOf("\r\n") + "\r\n".length();
data.concat(new String(queue.get(i).getData()).substring(start));
}
我们试图从数据queue
包列表中获取所有数据,并将它们全部放入一个字符串中。
但是每当它到达第二println
行(与它下面的行相同)时,程序就会挂起并且不做任何事情。
没有getData()
印刷作品。例如。
System.out.printlin("2: This doesn't: " + new String(queue.get(i)));
此外,每当我将一个数据包添加到队列中时,我都会立即打印队列中的最后一个数据包,这很有效。
public void addPacket(DatagramPacket additional)
{
queue.add(additional);
System.out.println("1: " + new String(queue.getLast().getData()));
}