我是scala语言的新手。
我讨厌输入CoapExchange对象的方法:
def handlePOST (request: CoapExchange) {
.....
如何在scala中将org.eclipse.californium.core.server.resources.CoapExchange
对象转换为Byte[]
感谢!!!
答案 0 :(得分:0)
所以,让我们看一下the source
我们找到了
/**
* Gets the request payload as byte array.
*
* @return the request payload
*/
public byte[] getRequestPayload() {
return exchange.getRequest().getPayload();
}
或者您可以使用the documentation here