将CoapExchange转换为字节[]

时间:2016-05-01 16:27:27

标签: java arrays scala byte type-conversion

我是scala语言的新手。

我讨厌输入CoapExchange对象的方法: def handlePOST (request: CoapExchange) { ..... 如何在scala中将org.eclipse.californium.core.server.resources.CoapExchange对象转换为Byte[] 感谢!!!

1 个答案:

答案 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