|
@@ -16,7 +16,7 @@ import java.util.Iterator;
|
|
|
|
|
|
public class Test {
|
|
|
|
|
|
-/* public static void main(String[] args) throws InvalidProtocolBufferException, UnsupportedEncodingException {
|
|
|
+ public static void main(String[] args) throws InvalidProtocolBufferException, UnsupportedEncodingException {
|
|
|
ManagedChannel channel = ManagedChannelBuilder.forAddress("10.0.0.24", 17070)
|
|
|
.usePlaintext()
|
|
|
.build();
|
|
@@ -36,17 +36,18 @@ public class Test {
|
|
|
Iterator<PredictionResponse> response = stub.streamPredictions(request);
|
|
|
while (response.hasNext()){
|
|
|
String responseStr = response.next().toString();
|
|
|
- System.out.println(unicodeToChinese(responseStr.substring(16, responseStr.length()-1)) + "---" + responseStr);
|
|
|
+// System.out.println(unicodeToChinese(responseStr.substring(16, responseStr.length()-1)) + "---" + responseStr);
|
|
|
+ System.out.println(responseStr);
|
|
|
}
|
|
|
channel.shutdown();
|
|
|
- }*/
|
|
|
+ }
|
|
|
|
|
|
|
|
|
- public static void main(String[] args) {
|
|
|
+ /* public static void main(String[] args) {
|
|
|
String str = "---prediction: \"\\346\\210\\221\"";
|
|
|
String substring = str.substring(16, str.length() - 1);
|
|
|
System.out.println(unicodeToChinese(substring));
|
|
|
- }
|
|
|
+ }*/
|
|
|
|
|
|
// 将 Unicode 编码的字符串转换为中文 (返回的结果里没有u 不是常规的Unicode编码)
|
|
|
// 将 Unicode 编码的字符串转换为中文
|