Protocol Buffers - 数字



概述

数字包括 protobuf 类型,例如 **int32、int64、float、double**,它们是 Protobuf 的基本构建块。它们分别转换为我们使用的语言(例如 Java、Python 等)中的 **int、long、float、double**。

继续我们从 Protocol Buffers - 字符串 章节中的 **theater** 示例,以下是我们需要使用的语法,以便指示 Protobuf 我们将创建 **数字**:

theater.proto

syntax = "proto3";
package theater;
option java_package = "com.tutorialspoint.theater";

message Theater {
   int32 total_capcity = 3;
   int64 mobile = 4;
   float base_ticket_price = 5;
}

现在我们的 **类/消息** 包含 **数值** 属性。每个属性还有一个 **位置**,这是 Protobuf 在序列化和反序列化过程中使用的。**成员** 的每个属性都需要分配一个唯一的编号。

从 Proto 文件创建 Java 类

要使用 Protobuf,我们现在必须使用 **protoc** 二进制文件从这个“.proto”文件创建所需的类。让我们看看如何做到这一点:

protoc  --java_out=. theater.proto

这将在当前目录的 **com > tutorialspoint > theater** 文件夹中创建一个 TheaterOuterClass.java 类。我们在应用程序中使用此类,类似于 Protocol Buffers - 基本应用 章节中所做的那样。

使用从 Proto 文件创建的 Java 类

TheaterWriter.java

package com.tutorialspoint.theater;

import java.io.FileOutputStream;
import java.io.IOException;
import com.tutorialspoint.theater.TheaterOuterClass.Theater;

public class TheaterWriter{
   public static void main(String[] args) throws IOException {
      Theater theater = Theater.newBuilder()
         .setTotalCapcity(320)
         .setMobile(98234567189L)
         .setBaseTicketPrice(22.45f)
         .build();
		
      String filename = "theater_protobuf_output";
      System.out.println("Saving theater information to file: " + filename);
		
      try(FileOutputStream output = new FileOutputStream(filename)){
         theater.writeTo(output);
      }
      System.out.println("Saved theater information with following data to disk: \n" + theater);
   }
}

接下来,我们将有一个 **读取器** 来读取 **theater** 信息:

TheaterReader.java

package com.tutorialspoint.theater;

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import com.tutorialspoint.greeting.Greeting.Greet;
import com.tutorialspoint.theater.TheaterOuterClass.Theater;
import com.tutorialspoint.theater.TheaterOuterClass.Theater.Builder;

public class TheaterReader{
   public static void main(String[] args) throws IOException {
      Builder theaterBuilder = Theater.newBuilder();

      String filename = "theater_protobuf_output";
      System.out.println("Reading from file " + filename);
        
      try(FileInputStream input = new FileInputStream(filename)) {
         Theater theater = theaterBuilder.mergeFrom(input).build();
         System.out.println(theater.getBaseTicketPrice());
         System.out.println(theater);
      }
   }
}

编译项目

现在我们已经设置了 **读取器** 和 **写入器**,让我们编译项目。

mvn clean install

序列化 Java 对象

现在,编译后,让我们先执行 **写入器**:

> java -cp .\target\protobuf-tutorial-1.0.jar 
com.tutorialspoint.theater.TheaterWriter

Saving theater information to file: theater_protobuf_output
Saved theater information with following data to disk:
total_capcity: 320
mobile: 98234567189
base_ticket_price: 22.45

反序列化序列化对象

现在,让我们执行 **读取器** 从同一个文件读取:

java -cp .\target\protobuf-tutorial-1.0.jar 
com.tutorialspoint.theater.TheaterReader

Reading from file theater_protobuf_output
22.45
total_capcity: 320
mobile: 98234567189
base_ticket_price: 22.45

因此,正如我们所看到的,我们能够通过将二进制数据反序列化为 **Theater** 对象来读取序列化的 **int、float** 和 **long**。在下一章 Protocol Buffers - 布尔值 中,我们将了解布尔类型。

广告