On Mon, Jul 26, 2010 at 2:09 PM, xxxxyyyyyy <[email protected]> wrote: > > DynamicMessage thisthing= DynamicMessage.parseFrom( > myDescriptorProto.getDescriptorForType(), inputM); > thisthing.writeTo(System.out); >
This writes raw binary to System.out. Use System.out.print(thisthing.toString()); or something like that. -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/protobuf?hl=en.
