本文整理汇总了Java中io.vertx.core.buffer.Buffer.getBytes方法的典型用法代码示例。如果您正苦于以下问题:Java Buffer.getBytes方法的具体用法?Java Buffer.getBytes怎么用?Java Buffer.getBytes使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类io.vertx.core.buffer.Buffer
的用法示例。
在下文中一共展示了Buffer.getBytes方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: readFromBuffer
import io.vertx.core.buffer.Buffer; //导入方法依赖的package包/类
@Override
public int readFromBuffer(int pos, Buffer buffer) {
int posLocal = super.readFromBuffer(pos, buffer);
final int jsonByteCount = buffer.getInt(posLocal);
posLocal += 4;
final byte[] jsonBytes = buffer.getBytes(posLocal, posLocal + jsonByteCount);
posLocal += jsonByteCount;
final String json = new String(jsonBytes, StandardCharsets.UTF_8);
final JsonObject profiles = new JsonObject(json);
final Map<String, CommonProfile> decodedUserProfiles = profiles.stream()
.filter(e -> e.getValue() instanceof JsonObject)
.map(e -> new MappedPair<>(e.getKey(),
(CommonProfile) DefaultJsonConverter.getInstance().decodeObject(e.getValue())))
.collect(toMap(e -> e.key, e -> e.value));
setUserProfiles(decodedUserProfiles);
return posLocal;
}
示例2: getMustache
import io.vertx.core.buffer.Buffer; //导入方法依赖的package包/类
/**
* @return a Mustache template compiled
*/
private Mustache getMustache() {
if (this.mustache == null) {
final FileSystem fs = this.getVertx().fileSystem();
final Buffer templateBuffer = fs.readFileBlocking(this.getTemplateName());
final MustacheFactory mf = new DefaultMustacheFactory();
final ByteArrayInputStream bi = new ByteArrayInputStream(templateBuffer.getBytes());
this.mustache = mf.compile(new InputStreamReader(bi), "Transform");
}
return this.mustache;
}
示例3: getTemplate
import io.vertx.core.buffer.Buffer; //导入方法依赖的package包/类
private Mustache getTemplate() {
final Vertx vertx = Vertx.vertx();
final FileSystem fs = vertx.fileSystem();
final Buffer b = fs.readFileBlocking("sample.mustache");
final MustacheFactory mf = new DefaultMustacheFactory();
final ByteArrayInputStream bi = new ByteArrayInputStream(b.getBytes());
final Mustache mustache = mf.compile(new InputStreamReader(bi), "Test");
return mustache;
}
示例4: from
import io.vertx.core.buffer.Buffer; //导入方法依赖的package包/类
/**
* Codec usage
*
* @param pos The position of reading
* @param buffer The buffer to hold the data from reading.
* @param <T> The converted java object type, Generic Type
* @return Return to converted java object.
*/
@SuppressWarnings("unchecked")
public static <T> T from(final int pos, final Buffer buffer) {
final ByteArrayInputStream stream = new ByteArrayInputStream(buffer.getBytes());
return Fn.getJvm(null, () -> {
final ObjectInputStream in = new ObjectInputStream(stream);
return (T) in.readObject();
}, stream);
}
示例5: onReceive
import io.vertx.core.buffer.Buffer; //导入方法依赖的package包/类
private void onReceive(Buffer buffer)
{
if (bufferSize - size - buffer.length() >= 0) {
buffer.getBytes(recvBuffer, size);
} else {
int newSize = bufferSize * (int) Math.ceil((size + buffer.length()) * 1.f / bufferSize);
byte[] newBuffer = new byte[newSize];
System.arraycopy(recvBuffer, 0, newBuffer, 0, size);
buffer.getBytes(newBuffer, size);
recvBuffer = newBuffer;
}
size += buffer.length();
expandPending();
}