JSON和对象集合之间的相互转化

所需jar包:

<dependency>
            <groupId>com.hynnet</groupId>
            <artifactId>json-lib</artifactId>
            <version>2.4</version>
        </dependency>

        <!-- https://mvnrepository.com/artifact/commons-lang/commons-lang -->
        <dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
            <version>2.5</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils -->
        <dependency>
            <groupId>commons-beanutils</groupId>
            <artifactId>commons-beanutils</artifactId>
            <version>1.8.0</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/commons-collections/commons-collections -->
        <dependency>
            <groupId>commons-collections</groupId>
            <artifactId>commons-collections</artifactId>
            <version>3.2.1</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/commons-logging/commons-logging -->
        <dependency>
            <groupId>commons-logging</groupId>
            <artifactId>commons-logging</artifactId>
            <version>1.1.1</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/net.sf.ezmorph/ezmorph -->
        <dependency>
            <groupId>net.sf.ezmorph</groupId>
            <artifactId>ezmorph</artifactId>
            <version>1.0.6</version>
        </dependency>
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>fastjson</artifactId>
            <version>1.2.47</version>
        </dependency>

实例:

        //集合生成
        User user1 = new User("a","aa");
        User user2 = new User("b","bb");
        List<User> list = new ArrayList<User>();
        list.add(user1);
        list.add(user2);

        //对象转json
        JSONObject jsonObject = JSONObject.fromObject(user1);
        String str = jsonObject.toString();
        System.out.print(str);

       //json转对象
        String JSONStr = JSON.toJSONString(str);
        User user = JSON.parseObject(str,new TypeReference<User>(){});


        //集合转json字符串
        JSONArray json = JSONArray.fromObject(list);
        String str = json.toString();
        System.out.print(str);

        //json字符串转集合
        String JSONStr = JSON.toJSONString(str);
        List<User> busLineList = JSON.parseObject(str,new TypeReference<List<User>>(){});

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
jacob实现语音播报 将附件jacob.dll放到system32文件夹下 <!-- https://mvnrepository.com/artifact/com.jacob/jacob 文字转语音 --> com.hynnet jacob 1.18 /** * 语音转文字并播放 * * @param text */ public void textToSpeech(String text) { ActiveXComponent ax = null; try { ax = new ActiveXComponent("Sapi.SpVoice"); // 运行时输出语音内容 Dispatch spVoice = ax.getObject(); // 音量 0-100 ax.setProperty("Volume", new Variant(100)); // 语音朗读速度 -10 到 +10 ax.setProperty("Rate", new Variant(-2)); // 执行朗读 Dispatch.call(spVoice, "Speak", new Variant(text)); // // 下面是构建文件流把生成语音文件 // // ax = new ActiveXComponent("Sapi.SpFileStream"); // Dispatch spFileStream = ax.getObject(); // // ax = new ActiveXComponent("Sapi.SpAudioFormat"); // Dispatch spAudioFormat = ax.getObject(); // // // 设置音频流格式 // Dispatch.put(spAudioFormat, "Type", new Variant(22)); // // 设置文件输出流格式 // Dispatch.putRef(spFileStream, "Format", spAudioFormat); // // 调用输出 文件流打开方法,创建一个.wav文件 // Dispatch.call(spFileStream, "Open", new Variant("./text.wav"), new Variant(3), new Variant(true)); // // 设置声音对象的音频输出流为输出文件对象 // Dispatch.putRef(spVoice, "AudioOutputStream", spFileStream); // // 设置音量 0到100 // Dispatch.put(spVoice, "Volume", new Variant(100)); // // 设置朗读速度 // Dispatch.put(spVoice, "Rate", new Variant(-2)); // // 开始朗读 // Dispatch.call(spVoice, "Speak", new Variant(text)); // // // 关闭输出文件 // Dispatch.call(spFileStream, "Close"); // Dispatch.putRef(spVoice, "AudioOutputStream", null); // // spAudioFormat.safeRelease(); // spFileStream.safeRelease(); // spVoice.safeRelease(); // ax.safeRelease(); } catch (Exception e) { e.printStackTrace(); } }
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值