Java学习笔记 - 第027天

网络相关

分组交换网
ISO OSI/RM ---> TCP/IP模式 --->Internet
浏览器

应用层 ---> 自定义协议/HTTP/XMPP/QQ/ICQ/SMTP/POP3/Telnet
传输层 ---> 端到端通信 - TCP/UDP - 套接字
网络层(IP) ---> 寻址和路由 - IP地址
物理链路层 ---> 电气特性、

协议 - 通信双方对方的标准和规范

HTTP -超文本传输协议 - Hyper-Text Transfer Protocol
HTTP请求
GET - 从服务器获取资源
POST - 向服务器提交数据
请求行 --> 命令 资源路径/资源名称 HTTP/1.1\r\n
请求头 --> 多组 键:值
\r\n
消息体(可以为空)

HTTP响应
响应行 --> HTTP/1.1 状态码
响应头 --> 多组 键:值
\r\n
消息体

text/html ---> HTML书写的网页
text/xml ---> 以XML格式表示的数据
对于移动客户端绝大数是以下形式
application/json ---> 以JSON格式表示的数据

HTML - Hyper-Text Markup Language
标签 --- 内容 H5
样式表 --- 显示 CSS3
JavaScript --- 行为 ECMA6 ---> Ajax

XML eXtensible Markup Language
<?xml version="1.0" encoding="utf-8">
<mail>
<from>Kygo</from>
<to>Jack</to>
<message>晚上你请我吃饭</message>
</mail>
JSON - JavaScript Object Notation
{"from":"Kygo","to":"Jack","message":"晚上你请我吃饭"}

URL - Universal Resource Locator
统一资源定位符 - 唯一标记某一个资源
http://www.baidu.com:80/index.html
http://180.93.33.108:80/index.html
协议://域名或者IP地址:端口/路径/资源名称[?查询字符串]

参数名1=参数值1&参数名2=参数值2

DNS - 域名服务 - 将域名转换成IP地址
端口 - 对IP地址的一个扩展 - 用于区分不同的服务

JSON解析工具 - jackson/gson/fastjson

分层是设计负责系统时必然要考虑的一件事情

表示层
业务层
持久层

每日要点

软引用和弱引用

如果一个对象有强引用引用它 那么一定不会被GC掉
如果一个对象有软引用引用它 那么在内存不足时就会被GC掉
如果一个对象有弱引用引用它 那么在发生垃圾回收时就会被GC掉

通常软引用和弱引用是用来实现对象缓存功能的
一般也不会直接使用SoftReference和WeakReference类
而是使用一个叫做WeakHashMao的容器

WeakHashMap中的键是以弱引用方式持有的
键值对中的键所引用的对象被释放后会自动移除对应的键值对组合
此项功能最适合用来设计对象缓存(容器中持有可留可不留的对象)
例子1:

class Shit {
    // 当垃圾回收器回收Shit对象时可能会调用该方法
    @Override
    protected void finalize() throws Throwable {
        System.out.println("狗屎没了!!!");
    }
}

class Test01 {
    
    // 如果一个对象有强引用引用它 那么一定不会被GC掉
    // 如果一个对象有软引用引用它 那么在内存不足时就会被GC掉
    // 如果一个对象有弱引用引用它 那么在发生垃圾回收时就会被GC掉
    // 通常软引用和弱引用是用来实现对象缓存功能的
    // 一般也不会直接使用SoftReference和WeakReference类
    // 而是使用一个叫做WeakHashMao的容器
    // WeakHashMap中的键是以弱引用方式持有的
    // 键值对中的键所引用的对象被释放后会自动移除对应的键值对组合
    // 此项功能最适合用来设计对象缓存(容器中持有可留可不留的对象)
    public static void foo() {
        Shit shit = new Shit();
        System.out.println(shit);
        // shit = null;
        // ...
    }

    public static void main(String[] args) {
        foo();
        System.out.println("hello");
        System.gc();
    }
}

例子2:

class Shit {
    @Override
    protected void finalize() throws Throwable {
        System.out.println("狗屎没了!!!");
    }
}

class Test02 {

    public static void foo() {
        Shit shit = new Shit();
        System.out.println(shit);
    }

    public static void main(String[] args) throws Exception {
        List<String> list = new ArrayList<>();

        System.out.println("=====第1坨=====");
        foo();
        System.gc();
        Thread.sleep(2000);

        System.out.println("=====第2坨=====");
        // 强引用
        // Shit shit = new Shit();
        // 弱引用
        WeakReference<Shit> weakShit = new WeakReference<Shit>(new Shit());
        int i = 0;
        while (true) {
            if (weakShit.get() == null) {
                System.out.println(list.size());
                System.out.println("Object has been collected.");
                break;
            }
            else {
                i += 1;
                list.add(String.valueOf(i));
                // System.out.println(Runtime.getRuntime().freeMemory());
                // System.out.println(i + ": " + weakShit);
            }
        }
    }
}

HTTP网络编程

基于HTTP协议访问服务器

  • 1.创建统一资源定位符对象
  • 2.基于URL对象创建连接对象
  • 3.设置请求行中的请求方法
  • 4.设置请求头
json解析

使用Gson第三方库将字符串将服务器返回的JSON格式的字符串处理成对象模型
通过JsonParser对象的parse()方法将字符串转成JsonElement

通过Gson对象的fromJson()方法将JsonElement转换成自定义类型的对象

例子1:百度apis.store中的身份证识别

class PersonInfo {
    private String address;
    @SerializedName("sex")
    private String gender;
    private String birthday;

    public String getAddress() {
        return address;
    }

    public void setAddress(String address) {
        this.address = address;
    }

    public String getGender() {
        return gender;
    }
    
    public void setGender(String gender) {
        this.gender = gender;
    }

    public String getBirthday() {
        return birthday;
    }

    public void setBirthday(String birthday) {
        this.birthday = birthday;
    }
}

class IdcardModel {
    // private int errNum;
    // private String retMsg;
    @SerializedName("retData")
    private PersonInfo info;

    public PersonInfo getInfo() {
        return info;
    }
    
    public void setInfo(PersonInfo info) {
        this.info = info;
    }
}

class Test03 {

    public static void main(String[] args) {
        URLConnection connection = null;
        try {
            // 基于HTTP协议访问服务器
            // 1.创建统一资源定位符对象
            // http://www.baidu.com:80/index.html
            // http://180.93.33.108:80/index.html
            // 协议://域名或者IP地址:端口/路径/资源名称[?查询字符串]
            // 参数名1=参数值1&参数名2=参数值2
            // 如果查询字符串中有不允许在URL中出现的字符(例如:中文)
            // 这些字符需要转换成百分号编码
            URL url = new URL("http://apis.baidu.com/apistore/idservice/id?id=510623199405100914");
            // 2.基于URL对象创建连接对象
            connection = url.openConnection();
            // 设置请求行中的请求方法
            ((HttpURLConnection) connection).setRequestMethod("GET");
            // 设置请求头
            connection.setRequestProperty("apikey", "2fa58657897cc7c76740406af043b75d");
            connection.connect();
            InputStream in = connection.getInputStream();
            BufferedReader br = new BufferedReader(new InputStreamReader(in, "utf-8"));
            StringBuilder sb = new StringBuilder();
            String temp;
            while ((temp = br.readLine()) != null) {
                sb.append(temp);
            }
            // 使用Gson第三方库将字符串将服务器返回的JSON格式的字符串处理成对象模型
            // 通过JsonParser对象的parse()方法将字符串转成JsonElement
            JsonElement elem = new JsonParser().parse(sb.toString());
            // 通过Gson对象的fromJson()方法将JsonElement转换成自定义类型的对象
            IdcardModel model = new Gson().fromJson(elem, IdcardModel.class);
            PersonInfo info = model.getInfo();
            System.out.println(info.getAddress());
            System.out.println(info.getGender());
            System.out.println(info.getBirthday());
        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (connection != null) {
                ((HttpURLConnection) connection).disconnect();
            }
        }
    }
}

中文转百分号编码

将中文转换成百分号编码(URL中需要使用百分号编码)
例子:

class Test04 {

    public static void main(String[] args) {
        String str = "阿萨德";
        String str2;
        try {
            // 将中文转换成百分号编码(URL中需要使用百分号编码)
            str2 = URLEncoder.encode(str, "utf-8");
            System.out.println(str2);
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        }
    }
}

作业

作业1:从网站找到相要的数据是json格式转换成

class BeautyNewsInfo {
    private String ctime;
    private String title;
    private String description;
    private String picUrl;
    private String url;
    
    public String getCtime() {
        return ctime;
    }
    public void setCtime(String ctime) {
        this.ctime = ctime;
    }
    public String getTitle() {
        return title;
    }
    public void setTitle(String title) {
        this.title = title;
    }
    public String getDescription() {
        return description;
    }
    public void setDescription(String description) {
        this.description = description;
    }
    public String getPicUrl() {
        return picUrl;
    }
    public void setPicUrl(String picUrl) {
        this.picUrl = picUrl;
    }
    public String getUrl() {
        return url;
    }
    public void setUrl(String url) {
        this.url = url;
    }
    
    @Override
    public String toString() {
        return "时间: " + ctime + "\n标题: " + title + "\n介绍: " + description
                + "\n图片地址: " + picUrl + "\n新闻地址: " + url + "\n";
    }
}

class News {
    private List<BeautyNewsInfo> newslist; 
    
    public List<BeautyNewsInfo> getNewslist() {
        return newslist;
    }
    
    public void setNewslist(List<BeautyNewsInfo> newslist) {
        this.newslist = newslist;
    }
}

class Test01 {

    public static void main(String[] args) {
        URLConnection connection = null;
        try {
            URL url = new URL("https://api.tianapi.com/meinv/?key=bbd3ff83c226c32839cf73363da25f73&num=10");
            connection = url.openConnection();
            connection.connect();
            InputStream in = connection.getInputStream();
            BufferedReader br = new BufferedReader(new InputStreamReader(in, "utf-8"));
            StringBuilder sb = new StringBuilder();
            String temp = null;
            while ((temp = br.readLine()) != null) {
                sb.append(temp);
            }
            JsonElement elem = new JsonParser().parse(sb.toString());
            News news = new Gson().fromJson(elem, News.class);
            List<BeautyNewsInfo> newsList = news.getNewslist();
            for (BeautyNewsInfo beautyNewsInfo : newsList) {
                System.out.println(beautyNewsInfo);
            }
        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        finally {
            ((HttpURLConnection) connection).disconnect();
        }
    }
}

作业例子

class GosipNews {
    private String title;
    @SerializedName("url")
    private String detailUrl;
    @SerializedName("ctime")
    private String pubTime;

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getDetailUrl() {
        return detailUrl;
    }

    public void setDetailUrl(String detailUrl) {
        this.detailUrl = detailUrl;
    }
    
    public String getPubTime() {
        return pubTime;
    }

    public void setPubTime(String pubTime) {
        this.pubTime = pubTime;
    }
    
    @Override
    public String toString() {
        return "标题: " + title + "\n" + 
                "发布时间: " + pubTime.toString() + "\n" +
                "详情链接: " + detailUrl + "\n";
    }
}

class NewsModel {
    private List<GosipNews> newslist;

    public List<GosipNews> getNewslist() {
        return newslist;
    }

    public void setNewslist(List<GosipNews> newslist) {
        this.newslist = newslist;
    }
}

class Test03 {
    public static final String URL = "https://api.tianapi.com/huabian/";
    public static final String API_KEY = "772a81a51ae5c780251b1f98ea431b84";
    
    public static List<GosipNews> loadDataModel(int num, int page) {
        List<GosipNews> list = null;
        URLConnection connection = null;
        try {
            String urlStr = String.format(
                    "%s?key=%s&num=%d&page=%d", URL, API_KEY, num, page);
            URL url = new URL(urlStr);
            connection = url.openConnection();
            connection.connect();
            InputStream in = connection.getInputStream();
            InputStreamReader reader = new InputStreamReader(in, "utf-8");
            JsonElement elem = new JsonParser().parse(reader);
            NewsModel model = new Gson().fromJson(elem, NewsModel.class);
            list = model.getNewslist();
        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (connection != null) {
                ((HttpURLConnection) connection).disconnect();
            }
        }
        return list;
    }
    
    public static void main(String[] args) {
        List<GosipNews> list = loadDataModel(5, 1);
        list.forEach(System.out::println);
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,056评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,842评论 2 378
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,938评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,296评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,292评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,413评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,824评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,493评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,686评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,502评论 2 318
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,553评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,281评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,820评论 3 305
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,873评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,109评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,699评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,257评论 2 341

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,573评论 18 139
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,339评论 25 707
  • 从三月份找实习到现在,面了一些公司,挂了不少,但最终还是拿到小米、百度、阿里、京东、新浪、CVTE、乐视家的研发岗...
    时芥蓝阅读 42,165评论 11 349
  • 本文出自 Eddy Wiki ,转载请注明出处:http://eddy.wiki/interview-java.h...
    eddy_wiki阅读 2,050评论 0 14
  • 一 最近手机被《微微一笑很倾城》刷屏了,该剧狂揽票房,收获了一大票粉丝。初...
    赵小小阅读 329评论 0 1