1
如何將多個元素放入byte[]
?我有以下3個元素:1)String data
,2)String status
和3)HashMap<String,String> headers
,它們需要作爲字節數組傳遞給setContent(byte[] data)
。下面是我想用以前的3個參數作爲輸入statusResult.setContent()
代碼:如何將多個元素放入java的byte []中
public void onSuccess(ClientResponse clientResponse){
String data=clientResponse.getMessage();
String status=String.valueOf(clientResponse.getStatus());
HashMap<String,String> headers=clientResponse.getHeaders();
// Now StatusResult is a class where we need to pass all this data,having only getters and
// setters for Content,so here in the next line i need to pass data,status and headers as
// a byte[] to setContent.
statusResult.setContent(byte[]);
}
有人可以幫我解決了這一點?
什麼,你希望把'data'元素呢?目前還不清楚.. – Maroun
@ᴍarounᴍaroun我把從響應收到的字符串消息放入數據中,它將作爲「hello world」的小行。 –
您需要在將對象放入字節[]之前序列化對象。您是否真的知道在將這些字節作爲序列化數據傳遞給該對象之後會發生什麼?該對象是否會以適當的方式解釋它們? – Ricardo