如何使用Java从GCP存储桶中读取JSON文件
我正在尝试阅读一个JSON文件并将其映射到Gson对象,使用不起作用的Filereader疲倦阅读,也尝试了多种方式,但没有运气。
public static Response[] getJsonData() {
try {
JsonReader reader = new JsonReader(new FileReader("gs://01test_dataflow/data_schema.json"));
Response[] response = new Gson().fromJson(reader, Response[].class);
return response;
} catch (NullPointerException e) {
e.printStackTrace();
return null;
} catch (FileNotFoundException e) {
e.printStackTrace();
return null;
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
I am trying to read a json file and map to Gson object on fly, tired reading using FileReader which is not working, also tried multiple ways but no luck.. can someone help me in reading from gcp bucket
public static Response[] getJsonData() {
try {
JsonReader reader = new JsonReader(new FileReader("gs://01test_dataflow/data_schema.json"));
Response[] response = new Gson().fromJson(reader, Response[].class);
return response;
} catch (NullPointerException e) {
e.printStackTrace();
return null;
} catch (FileNotFoundException e) {
e.printStackTrace();
return null;
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论