Here you can find the source of stringToByteString(String string)
public static ByteString stringToByteString(String string)
//package com.java2s; //License from project: Open Source License import com.google.protobuf.ByteString; public class Main { public static ByteString stringToByteString(String string) { return ByteString.copyFromUtf8(string); }// w w w . ja v a 2s .com }