Я пытаюсь получить ответ в формате JSON
, и по какой-то причине пример кода Google добавляет в ответ связку {}
. Используя приведенный ниже код, я могу получить ответ, но не в формате JSON
.
public static void main(String... args) throws Exception {
// Instantiates a client
try (ImageAnnotatorClient vision = ImageAnnotatorClient.create()) {
// The path to the image file to annotate
String fileName = "src/main/resources/city-park.jpg";
// Reads the image file into memory
Path path = Paths.get(fileName);
byte[] data = Files.readAllBytes(path);
ByteString imgBytes = ByteString.copyFrom(data);
// Builds the image annotation request
List<AnnotateImageRequest> requests = new ArrayList<>();
Image img = Image.newBuilder().setContent(imgBytes).build();
Feature feat = Feature.newBuilder().setType(Type.LABEL_DETECTION).build();
AnnotateImageRequest request = AnnotateImageRequest.newBuilder()
.addFeatures(feat)
.setImage(img)
.build();
requests.add(request);
// Performs label detection on the image file
BatchAnnotateImagesResponse response = vision.batchAnnotateImages(requests);
System.out.println(response.toString());
}
}
}
Вот пример кода печати, который близок к JSON, но отформатирован неверно. Можно ли как-нибудь правильно отформатировать его?
responses {
label_annotations {
mid: "/m/02l215"
description: "Reflection"
score: 0.9883928
topicality: 0.9883928
}
label_annotations {
mid: "/m/05h0n"
description: "Nature"
score: 0.98085856
topicality: 0.98085856
}
label_annotations {
mid: "/m/03d28y3"
description: "Natural landscape"
score: 0.9740803
topicality: 0.9740803
}
label_annotations {
mid: "/m/0838f"
description: "Water"
score: 0.9714835
topicality: 0.9714835
}
label_annotations {
mid: "/m/038hg"
description: "Green"
score: 0.9620494
topicality: 0.9620494
}
label_annotations {
mid: "/m/01bqvp"
description: "Sky"
score: 0.96003544
topicality: 0.96003544
}
label_annotations {
mid: "/m/015s2f"
description: "Water resources"
score: 0.9593428
topicality: 0.9593428
}
label_annotations {
mid: "/m/07j7r"
description: "Tree"
score: 0.9462387
topicality: 0.9462387
}
label_annotations {
mid: "/m/01fnns"
description: "Vegetation"
score: 0.9326158
topicality: 0.9326158
}
label_annotations {
mid: "/m/02yq2x"
description: "Reflecting pool"
score: 0.8776601
topicality: 0.8776601
}
}
Редактировать: я хотел быстро отредактировать свой пост, потому что, хотя все ответы здесь велики и помогли, я обнаружил, что именно это заставило его работать так, как я хотел.
String theData = com.google.protobuf.util.JsonFormat.printer().print(response);