https://github.com/bivas/protobuf-java-format
Provide serialization and de-serialization of different formats based on Google’s protobuf Message. Enables overriding the default (byte array) output to text based formats such as XML, JSON and HTML.
https://github.com/bivas/protobuf-java-format
json-format protobuf protocol-buffers serialization xml
Last synced: about 1 year ago
JSON representation
Provide serialization and de-serialization of different formats based on Google’s protobuf Message. Enables overriding the default (byte array) output to text based formats such as XML, JSON and HTML.
- Host: GitHub
- URL: https://github.com/bivas/protobuf-java-format
- Owner: bivas
- License: bsd-3-clause
- Created: 2012-05-11T16:20:06.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2024-09-19T16:17:33.000Z (almost 2 years ago)
- Last Synced: 2024-09-22T21:39:49.366Z (over 1 year ago)
- Topics: json-format, protobuf, protocol-buffers, serialization, xml
- Language: Java
- Homepage:
- Size: 429 KB
- Stars: 152
- Watchers: 22
- Forks: 97
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
Fork from http://code.google.com/p/protobuf-java-format/
[](https://travis-ci.org/bivas/protobuf-java-format)
## Description
Provide serialization and de-serialization of different formats based on Google’s protobuf Message. Enables overriding the default (byte array) output to text based formats such as XML, JSON and HTML.
##Example
For XML output, use XmlFormat
```java
Message someProto = SomeProto.getDefaultInstance();
XmlFormat xmlFormat = new XmlFormat();
String asXml = xmlFormat.printToString(someProto);
```
For XML input, use XmlFormat
```java
Message.Builder builder = SomeProto.newBuilder();
String asXml = _load xml document from a source_;
XmlFormat xmlFormat = new XmlFormat();
xmlFormat.merge(asXml, builder);
```
For Json output, use JsonFormat
```java
Message someProto = SomeProto.getDefaultInstance();
JsonFormat jsonFormat = new JsonFormat();
String asJson = jsonFormat.printToString(someProto);
```
For Json input, use JsonFormat
```java
Message.Builder builder = SomeProto.newBuilder();
String asJson = _load json document from a source_;
JsonFormat jsonFormat = new JsonFormat();
jsonFormat.merge(asJson, builder);
```
For HTML output, use HtmlFormat
```java
Message someProto = SomeProto.getDefaultInstance();
HtmlFormat htmlFormat = new HtmlFormat();
String asHtml = htmlFormat.printToString(someProto);
```