上一页 1 ··· 49 50 51 52 53 54 55 56 57 ··· 97 下一页
摘要: 1、开启baidu-api的文字识别 2、查看官方文档 3、例子 import time import pymysql import requests from aip import AipOcr from config import dev_db from config import APP_ID 阅读全文
posted @ 2020-03-25 11:08 市丸银 阅读(432) 评论(0) 推荐(0)
摘要: 1、安装 pip install opencv_python 2、具体代码(借鉴) import cv2 import numpy as np # 均值哈希算法 def aHash(img): # 缩放为8*8 img = cv2.resize(img, (8, 8), interpolation= 阅读全文
posted @ 2020-03-25 11:00 市丸银 阅读(320) 评论(0) 推荐(0)
摘要: 1、镜像 https://elasticsearch.thans.cn/downloads/elasticsearch/elasticsearch-7.3.2-windows-x86_64.zip 2、安装(参考) http://www.pianshen.com/article/1577447535 阅读全文
posted @ 2020-02-28 08:57 市丸银 阅读(112) 评论(0) 推荐(0)
摘要: 1、获取系统当前的时间(毫秒) 与Date类中getTime()方法相似 package cn.wt.day12; import java.util.Date; public class Demon03 { public static void main(String[] args) { long 阅读全文
posted @ 2020-02-10 17:19 市丸银 阅读(167) 评论(0) 推荐(0)
摘要: 注意:西方国家的月份是0~11 一、基础 1、注意:Calendar类是抽象类型 2、初始化对象 通过调用Calendar中的静态方法进行初始化 package cn.wt.day12; import java.util.Calendar; public class Demon02 { public 阅读全文
posted @ 2020-02-10 16:16 市丸银 阅读(476) 评论(0) 推荐(0)
摘要: 一、Date 1、注意是util包 2、作用 与时间相关的类 3、语法 Date date = new Date(); // 获取当前的时间 Mon Feb 10 14:19:51 CST 2020 System.out.println(date); // 获取毫秒 1581315591562 lo 阅读全文
posted @ 2020-02-10 14:40 市丸银 阅读(165) 评论(0) 推荐(0)
摘要: 一、== 1、基本数据类型比较的是值 2、引用数据类型比较的是地址 二、equals equals方法默认比较对象的地址值 具体看源码 this==obj 三、Objects 1、作用 防止比较的时候出现空指针异常 String s1 = null; String s2 = "abc"; // 出现 阅读全文
posted @ 2020-02-10 09:38 市丸银 阅读(132) 评论(0) 推荐(0)
摘要: 一、基础 1、概念 内部类:在类内部中定义类 2、分类 a、成员内部类 b、局部内部类(匿名内部类) 二、成员内部类(类比成员方法和成员变量) 1、语法 package cn.wt.day11.demon; public class Outer { // 成员内部类 public class Inn 阅读全文
posted @ 2020-01-24 22:50 市丸银 阅读(131) 评论(0) 推荐(0)
摘要: 内容 public >protected> (default)> private 同类 yes yes yes yes 同包 yes yes yes no 异包子类 yes yes no no 异包没关系 yes no no no 阅读全文
posted @ 2020-01-24 22:11 市丸银 阅读(114) 评论(0) 推荐(0)
摘要: 一、种类 1、类 2、方法 3、局部变量 4、成员变量 二、类 1、作用 将该类变成最终类,不能被继承(太监类) 注意:该类的方法不能被overrider 2、语法 修饰符 final class 类名{} 3、例子 1 package cn.wt.day11; 2 3 public final c 阅读全文
posted @ 2020-01-24 18:24 市丸银 阅读(145) 评论(0) 推荐(0)
上一页 1 ··· 49 50 51 52 53 54 55 56 57 ··· 97 下一页