使用protobuf进行数据序列化和反序列化------------------案例

1.先在idea中安装protubuf的插件,

可参照:https://blog.csdn.net/data_curd/article/details/106595738

2.添加pom.xml文件

也就是: 配置Maven依赖与插件

<dependencies>
        <dependency>
            <groupId>com.google.protobuf</groupId>
            <artifactId>protobuf-java</artifactId>
            <version>3.4.0</version>
        </dependency>
</dependencies>
 <build>
        <extensions>
            <extension>
                <groupId>kr.motd.maven</groupId>
                <artifactId>os-maven-plugin</artifactId>
                <version>1.6.2</version>
            </extension>
        </extensions>
        <plugins>
            <!-- Protobuf插件 -->
            <plugin>
                <groupId>org.xolstice.maven.plugins</groupId>
                <artifactId>protobuf-maven-plugin</artifactId>
                <version>0.5.0</version>
                <configuration>
                    <protoSourceRoot>${project.basedir}/src/main/proto</protoSourceRoot>
                    <protocArtifact>
                        com.google.protobuf:protoc:3.1.0:exe:${os.detected.classifier}
                    </protocArtifact>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>compile</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

使用protobuf进行数据序列化和反序列化------------------案例_第1张图片

3.查看Maven Projects------>此项目-------->Plugins中是否又protobuf选项

使用protobuf进行数据序列化和反序列化------------------案例_第2张图片

4.编写代码并加载文件

使用protobuf进行数据序列化和反序列化------------------案例_第3张图片

使用protobuf进行数据序列化和反序列化------------------案例_第4张图片

5.编写java代码进行数据的序列化和反序列化

使用protobuf进行数据序列化和反序列化------------------案例_第5张图片
使用protobuf进行数据序列化和反序列化------------------案例_第6张图片
使用protobuf进行数据序列化和反序列化------------------案例_第7张图片

你可能感兴趣的:(protobuf,java)