首页
学习
活动
专区
圈层
工具
发布
社区首页 >专栏 >java: read json file

java: read json file

作者头像
geovindu
发布2026-06-19 09:43:57
发布2026-06-19 09:43:57
10
举报

https://commons.apache.org/proper/commons-io/download_io.cgi https://commons.apache.org/proper/commons-io/apidocs/org/apache/commons/io/FileUtils.html https://stleary.github.io/JSON-java/org/json/JSONObject.html https://github.com/stleary/JSON-java

代码语言:javascript
复制
            try {
                String filename = "geovindu.json";
                InputStream is = SqlDuMain.class.getResourceAsStream(filename);
                JSONTokener tokener = new JSONTokener(is);
                JSONObject object = new JSONObject(tokener);
                System.out.println("Id  : " + object.getLong("id"));
                System.out.println("Name: " + object.getString("name"));
                System.out.println("Age : " + object.getInt("age"));

                System.out.println("Courses: ");
                JSONArray courses = object.getJSONArray("courses");
                for (int dui = 0; dui < courses.length(); dui++) {
                    System.out.println("  - " + courses.get(dui));
                }

               /*Geovin Du 涂聚文*/ //2
                File file=new File("src/geovindu.json");
                if (file.exists()) {

                    String content = FileUtils.readFileToString(file, "UTF-8");

                    System.out.println(content);
                    //String filename1 = "geovindu.json";
                    JSONObject jsonObject = parseJSONFile("src/geovindu.json");
                    System.out.println(jsonObject.toString());

                }




            }
            catch (Exception exception)
            {
                exception.printStackTrace();
            }



        }
        catch (NoSuchMethodException exception)
        {
            exception.printStackTrace();
        }
        catch (Exception exception){
            exception.printStackTrace();
        }
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2026-06-17,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档