當前位置: 首頁>>代碼示例>>Java>>正文


Java Encoder.writeInt方法代碼示例

本文整理匯總了Java中org.apache.avro.io.Encoder.writeInt方法的典型用法代碼示例。如果您正苦於以下問題:Java Encoder.writeInt方法的具體用法?Java Encoder.writeInt怎麽用?Java Encoder.writeInt使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.apache.avro.io.Encoder的用法示例。


在下文中一共展示了Encoder.writeInt方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: writeMap

import org.apache.avro.io.Encoder; //導入方法依賴的package包/類
@Override
@SuppressWarnings({ "rawtypes", "unchecked" })
protected void writeMap(Schema schema, Object datum, Encoder out)
    throws IOException {

  if (writeDirtyBits) {
    // write extra state information for maps
    StatefulMap<Utf8, ?> map = (StatefulMap) datum;
    out.writeInt(map.states().size());
    for (Entry<Utf8, State> e2 : map.states().entrySet()) {
      out.writeString(e2.getKey());
      out.writeInt(e2.getValue().ordinal());
    }
  }
  super.writeMap(schema, datum, out);
}
 
開發者ID:galaxyeye,項目名稱:gora-0.3-simplified,代碼行數:17,代碼來源:PersistentDatumWriter.java

示例2: writeBoolArray

import org.apache.avro.io.Encoder; //導入方法依賴的package包/類
/**
 * Writes a boolean[] to the output.
 */
public static void writeBoolArray(Encoder out, boolean[] boolArray)
  throws IOException {

  out.writeInt(boolArray.length);

  int byteArrLength = (int)Math.ceil(boolArray.length / 8.0);

  byte b = 0;
  byte[] arr = new byte[byteArrLength];
  int i = 0;
  int arrIndex = 0;
  for(i=0; i<boolArray.length; i++) {
    if(i % 8 == 0 && i != 0) {
      arr[arrIndex++] = b;
      b = 0;
    }
    b >>= 1;
    if(boolArray[i])
      b |= 0x80;
    else
      b &= 0x7F;
  }
  if(i % 8 != 0) {
    for(int j=0; j < 8 - (i % 8); j++) { //shift for the remaining byte
      b >>=1;
      b &= 0x7F;
    }
  }

  arr[arrIndex++] = b;
  out.writeFixed(arr);
}
 
開發者ID:jianglibo,項目名稱:gora-boot,代碼行數:36,代碼來源:IOUtils.java

示例3: writeBoolArray

import org.apache.avro.io.Encoder; //導入方法依賴的package包/類
/**
 * Writes a boolean[] to the output.
 *
 * @param out encoder instance which wraps the output stream where data is written.
 * @param boolArray boolean array.
 * @throws IOException when failed writing the data to the stream.
 */
public static void writeBoolArray(Encoder out, boolean[] boolArray)
  throws IOException {

  out.writeInt(boolArray.length);

  int byteArrLength = (int)Math.ceil(boolArray.length / 8.0);

  byte b = 0;
  byte[] arr = new byte[byteArrLength];
  int i = 0;
  int arrIndex = 0;
  for(i=0; i<boolArray.length; i++) {
    if(i % 8 == 0 && i != 0) {
      arr[arrIndex++] = b;
      b = 0;
    }
    b >>= 1;
    if(boolArray[i])
      b |= 0x80;
    else
      b &= 0x7F;
  }
  if(i % 8 != 0) {
    for(int j=0; j < 8 - (i % 8); j++) { //shift for the remaining byte
      b >>=1;
      b &= 0x7F;
    }
  }

  arr[arrIndex++] = b;
  out.writeFixed(arr);
}
 
開發者ID:apache,項目名稱:gora,代碼行數:40,代碼來源:IOUtils.java


注:本文中的org.apache.avro.io.Encoder.writeInt方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。