Mapreduce实战:序列化与反序列化 int,int[],string[][]

最新一期《中国IT产业发展报告》在2016中国(深圳)IT领袖峰会上正式公布,数字中国联合会常务理事李颖称,中国IT产业完成了从要素驱动向效率驱动的过渡,目前正在由效率驱动向创新驱动发展。

//定义要序列化的类型
  protected int[] splits;//int 数组
  protected String[][] splitss;// 二维数组
  protected int n1; //int 

  public void cFPoints1(Vector<Text2> sample, int n) {
    String[]strs = sample.toString().split (",");
    int numSplits = strs.length/3;
    //对数组进行长度设定
    this.splits = new int[numSplits];
    this.splitss = new String[numSplits][3];
     //赋值
    this.n1 = n;
    for (int i =0; i < sample.size();i++){
    	String  string = sample.get(i).toString();
    	 String[]strs1 = string.toString().split (",");
    	this.splits[i] = Integer.parseInt(strs1[0]);
    	this.splitss[i][0] = strs1[0];
	this.splitss[i][1] = strs1[1];
	this.splitss[i][2] = strs1[2];
    }  

  }   
<span style="font-family: Arial, Helvetica, sans-serif;">//注意序列化和反序列化的顺序要一致</span>
  @Override
  public void write(DataOutput out) throws IOException {
    //序列化int类型</span>
    out.writeInt(n1);
    //序列化int数组</span>
    out.writeInt(splits.length);
    ByteBuffer bbuffer = ByteBuffer.allocate(splits.length * 4);
    for (int split : splits)
      bbuffer.putInt(split);
    out.write(bbuffer.array(), bbuffer.arrayOffset(), bbuffer.position());
     //序列化string数组</span>
    out.writeInt(splitss.length);
    for (String[] is2 : splitss) {
		for (String i : is2) {
			Text.writeString(out, i);
		}
    } 

  }

  @Override
  public void readFields(DataInput in) throws IOException {
    //反序列化int类型</span>
    n1 = in.readInt();
     //反序列化int数组</span>
    splits = new int[in.readInt()];
    byte[] buffer = new byte[splits.length * 4];
    in.readFully(buffer);
    ByteBuffer bbuffer = ByteBuffer.wrap(buffer);
    for (int i = 0; i < splits.length; i++)
      splits[i] = bbuffer.getInt();
    //反序列化string数组</span>
    splitss = new String[in.readInt()][3];
    for (int i = 0; i < splitss.length; i++)
    	 for (int k = 0; k < splitss[0].length; k++) {
    		 splitss[i][k] = Text.readString(in);
    	 }
  }
}
时间: 2024-10-07 18:46:53

Mapreduce实战:序列化与反序列化 int,int[],string[][]的相关文章

int与string的相互转换

<1>stringstream 的方式 C++标准库里面有一个stringstream可以用于各种数据类型之间的转换.无论是从int到string,还是从string到int都可以使用这种方法. 需要包含的头文件是<sstream>. 使用方法如下: #include <sstream> #include <iostream> #include <string> using namespace std; int main() { string s

JAVA中int、String的类型转换

int -> String int i=12345;String s="";第一种方法:s=i+"";第二种方法:s=String.valueOf(i);这两种方法有什么区别呢?作用是不是一样的呢?是不是在任何下都能互换呢? String -> int s="12345";int i;第一种方法:i=Integer.parseInt(s);第二种方法:i=Integer.valueOf(s).intValue();这两种方法有什么区别

java中Object转换成int或String类型方法

转载: http://www.cnblogs.com/1020182600HENG/p/6137206.html Object obj = getObject(); if(obj instanceof Integer) int value = (Integer)obj; 1 String转换为int类型的方法: 1. Integer.parseInt([String]) 2.Integer.valueOf([String]).intValue(); 3.Integer.decode([Strin

int 和 string 相互转换(简洁版)

string int2str(int x) { if (x) return num2str(x/10)+string(1,x%10+'0'); else return "";} int str2int(string s) { int x = 0; for (char it : s) x = x*10+it-'0'; return x;} PS:谁还能更短(>.<)

java中int,char,string三种类型的相互转换

如何将字串 String 转换成整数 int? int i = Integer.valueOf(my_str).intValue(); int i=Integer.parseInt(str); 如何将字串 String 转换成Integer ? Integer integer=Integer.valueOf(str); 如何将整数 int 转换成字串 String ? 1.) String s = String.valueOf(i); 2.) String s = Integer.toStrin

c# &nbsp; int与string的转换

在c#中,int于string之间的转换不能像C语言那样可以用 int a; char b='1'; a=(int)b; string转换为int时,可以使用int.Parse():列如: int a; string b="555"; a=int.Parse(b); int转换为string时,则可以直接在int型后面加上tostring()即可! int a=111; string b="555"; b=(a+a).ToString:

Java中int与String间的类型转换

int -> String int i=12345;String s=""; 除了直接调用i.toString();还有以下两种方法第一种方法:s=i+"";第二种方法:s=String.valueOf(i);这两种方法有什么区别呢?作用是不是一样的呢?是不是在任何下都能互换呢? String -> int s="12345";int i;第一种方法:i=Integer.parseInt(s);第二种方法:i=Integer.valu

c++学习 - int 和 string 的相互转换

在C++中会碰到int和string类型转换的. string -> int 首先我们先看两个函数: atoi 这个函数是把char * 转换成int的.应该是属于标准库函数.在想把string 转换成int的时候,需要以下流程: string -> char * -> int 如此才可以,例子如下: string a = "1234"; int b = atoi(a.c_str()); 这样打印b的时候,就是1234了. itoa 这个函数在我搜索的时候,好像不属于

linux int to string 方法

最近从windows 移植程序的时候发现to_string()函数在linux 中不能用,网上找了几种方法,觉得使用stringstream对象来实现类型转化比较好一点. 你只需在你工程中加入下面的to_sting()函数,就不需要修改你原程序了.(这篇只是本人移植工程时的心得,高手绕过!) /* * to_string.cpp * Created on: 2014年9月11日 * Author: tursunjan * linux int to string */ #include<iostr