如何使用Java从GCP存储桶中读取JSON文件

发布于 2025-01-24 00:52:52 字数 685 浏览 0 评论 0原文

我正在尝试阅读一个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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文