博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java JSON 之 对象 转 JSON 字符串
阅读量:5238 次
发布时间:2019-06-14

本文共 1671 字,大约阅读时间需要 5 分钟。

下载依赖 jar 包   json.jar package com.json7;import org.json.JSONObject;public class Test{    public static void main(String[] args)    {        /*         题目: 建立一个 House 类(编号, 房东,房屋描述,房屋价格,是否出租)              将 House 的一个对象转成 JSON 字符串         */                //新建一个 House 对象        House h=new House(1,"刘虎","2室1厅",4000,true);                //将 House 对象转成 JSON 字符串        JSONObject jsonObj=new JSONObject(h);        System.out.println(jsonObj.toString());            }}package com.json7;public class House{    //编号, 房东,房屋描述,房屋价格,是否出租    private int id;    private String owner;    private String description;    private double price;    private boolean isRent;    public House(int id, String owner, String description, double price,            boolean isRent)    {        super();        this.id = id;        this.owner = owner;        this.description = description;        this.price = price;        this.isRent = isRent;    }    public int getId()    {        return id;    }    public void setId(int id)    {        this.id = id;    }    public String getOwner()    {        return owner;    }    public void setOwner(String owner)    {        this.owner = owner;    }    public String getDescription()    {        return description;    }    public void setDescription(String description)    {        this.description = description;    }    public double getPrice()    {        return price;    }    public void setPrice(double price)    {        this.price = price;    }    public boolean isRent()    {        return isRent;    }    public void setRent(boolean isRent)    {        this.isRent = isRent;    }        }

转载于:https://www.cnblogs.com/verejava/p/9236964.html

你可能感兴趣的文章
实在自动现在APK,微信跳浏览器下载
查看>>
java之static关键字
查看>>
Linux系统下python代码运行shell命令的方法
查看>>
剑指offer——python【第38题】二叉树的深度
查看>>
Log4Net日志组件使用
查看>>
Windows 10 使用压缩包安装MySQL8.0.12
查看>>
bzoj 1689: [Usaco2005 Open] Muddy roads 泥泞的路
查看>>
Android 代码库(自定义一套 Dialog通用提示框 )
查看>>
[Java]ArrayList、LinkedList、Vector、Stack的比较
查看>>
我为什么要写博客,写博客给我带来了什么?
查看>>
Furure的简单介绍和使用
查看>>
jsp 监听器
查看>>
Libre 6005 「网络流 24 题」最长递增子序列 / Luogu 2766 最长递增子序列问题(网络流,最大流)...
查看>>
软件工程概论-作业之二
查看>>
豆瓣酱alpha版本发布了
查看>>
使用JavaMail发送邮件
查看>>
Netty - 1
查看>>
不要在using语句中调用WCF服务
查看>>
html文本框大全
查看>>
数据库架构
查看>>