org.apache.avro.Protocol.toJson()方法的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(3.1k)|赞(0)|评价(0)|浏览(93)

本文整理了Java中org.apache.avro.Protocol.toJson()方法的一些代码示例,展示了Protocol.toJson()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Protocol.toJson()方法的具体详情如下:
包路径:org.apache.avro.Protocol
类名称:Protocol
方法名:toJson

Protocol.toJson介绍

暂无

代码示例

代码示例来源:origin: apache/avro

/** Render this as <a href="http://json.org/">JSON</a>.
 * @param pretty if true, pretty-print JSON.
 */
public String toString(boolean pretty) {
 try {
  StringWriter writer = new StringWriter();
  JsonGenerator gen = Schema.FACTORY.createGenerator(writer);
  if (pretty) gen.useDefaultPrettyPrinter();
  toJson(gen);
  gen.flush();
  return writer.toString();
 } catch (IOException e) {
  throw new AvroRuntimeException(e);
 }
}
void toJson(JsonGenerator gen) throws IOException {

代码示例来源:origin: org.apache.avro/avro

/** Render this as <a href="http://json.org/">JSON</a>.
 * @param pretty if true, pretty-print JSON.
 */
public String toString(boolean pretty) {
 try {
  StringWriter writer = new StringWriter();
  JsonGenerator gen = Schema.FACTORY.createJsonGenerator(writer);
  if (pretty) gen.useDefaultPrettyPrinter();
  toJson(gen);
  gen.flush();
  return writer.toString();
 } catch (IOException e) {
  throw new AvroRuntimeException(e);
 }
}
void toJson(JsonGenerator gen) throws IOException {

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.avro

/** Render this as <a href="http://json.org/">JSON</a>.
 * @param pretty if true, pretty-print JSON.
 */
public String toString(boolean pretty) {
 try {
  StringWriter writer = new StringWriter();
  JsonGenerator gen = Schema.FACTORY.createJsonGenerator(writer);
  if (pretty) gen.useDefaultPrettyPrinter();
  toJson(gen);
  gen.flush();
  return writer.toString();
 } catch (IOException e) {
  throw new AvroRuntimeException(e);
 }
}
void toJson(JsonGenerator gen) throws IOException {

代码示例来源:origin: org.apache.hadoop/avro

/** Render this as <a href="http://json.org/">JSON</a>.
 * @param pretty if true, pretty-print JSON.
 */
public String toString(boolean pretty) {
 try {
  StringWriter writer = new StringWriter();
  JsonGenerator gen = Schema.FACTORY.createJsonGenerator(writer);
  if (pretty) gen.useDefaultPrettyPrinter();
  toJson(gen);
  gen.flush();
  return writer.toString();
 } catch (IOException e) {
  throw new AvroRuntimeException(e);
 }
}
void toJson(JsonGenerator gen) throws IOException {

代码示例来源:origin: com.facebook.presto.hive/hive-apache

/** Render this as <a href="http://json.org/">JSON</a>.
 * @param pretty if true, pretty-print JSON.
 */
public String toString(boolean pretty) {
 try {
  StringWriter writer = new StringWriter();
  JsonGenerator gen = Schema.FACTORY.createJsonGenerator(writer);
  if (pretty) gen.useDefaultPrettyPrinter();
  toJson(gen);
  gen.flush();
  return writer.toString();
 } catch (IOException e) {
  throw new AvroRuntimeException(e);
 }
}
void toJson(JsonGenerator gen) throws IOException {

代码示例来源:origin: org.apache.cassandra.deps/avro

/** Render this as <a href="http://json.org/">JSON</a>.
 * @param pretty if true, pretty-print JSON.
 */
public String toString(boolean pretty) {
 try {
  StringWriter writer = new StringWriter();
  JsonGenerator gen = Schema.FACTORY.createJsonGenerator(writer);
  if (pretty) gen.useDefaultPrettyPrinter();
  toJson(gen);
  gen.flush();
  return writer.toString();
 } catch (IOException e) {
  throw new AvroRuntimeException(e);
 }
}
void toJson(JsonGenerator gen) throws IOException {

相关文章