上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 24 下一页
摘要: package com.itheima; import java.util.Date; public class DateDeom01 { public static void main(String[] args) { //Date() Date d1=new Date(); System.out 阅读全文
posted @ 2022-11-06 16:05 NiceTwocu 阅读(18) 评论(0) 推荐(0)
摘要: package com.itheima; public class integerDemo03 { public static void main(String[] args) { //装箱:把基本数据类型转化为对应的包装类类型; // Integer i = Integer.valueOf(100 阅读全文
posted @ 2022-11-06 15:53 NiceTwocu 阅读(20) 评论(0) 推荐(0)
摘要: #查询表 show tables; 查看表结构 decs 表名; #创建表 注意创建表列名要加反引号 create table 表名( 列名1 数据类型, 列名1 数据类型, .............. ); #删除表 #修改表 阅读全文
posted @ 2022-11-06 15:12 NiceTwocu 阅读(34) 评论(0) 推荐(0)
摘要: import time from webdriver_helper import webdriver, get_webdriver from selenium.webdriver import chrome from selenium.webdriver.common.by import By # 阅读全文
posted @ 2022-11-02 23:30 NiceTwocu 阅读(26) 评论(0) 推荐(0)
摘要: import time from webdriver_helper import webdriver, get_webdriver from selenium.webdriver import chrome from selenium.webdriver.common.by import By dr 阅读全文
posted @ 2022-11-02 23:09 NiceTwocu 阅读(50) 评论(0) 推荐(0)
摘要: package com.itheima; import javax.swing.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.util.Random; public cl 阅读全文
posted @ 2022-11-02 22:54 NiceTwocu 阅读(44) 评论(0) 推荐(0)
摘要: #这里创建库需要注意给库设置默认编码和排序规则 create database db2 default CHARACTER set utf8 collate utf8_general_ci; #创建后如果忘记设置编码和排序规则 可以通过以下语句修改 alter DATABASE db1 defaul 阅读全文
posted @ 2022-11-02 22:31 NiceTwocu 阅读(34) 评论(0) 推荐(0)
摘要: ###1、下载地址 https://downloads.mysql.com/archives/community/ ###2、解压 ###3、下图目录下 创建一个my.ini文件 写入下方内容 [mysql] default-character-set=utf8 [mysqld] character 阅读全文
posted @ 2022-11-02 22:05 NiceTwocu 阅读(29) 评论(0) 推荐(0)
摘要: package com.itheima; public class intger_02 { public static void main(String[] args) { //int和string的相互转换 int number=100; //方式一 String s1=number+""; Sy 阅读全文
posted @ 2022-11-01 21:43 NiceTwocu 阅读(40) 评论(0) 推荐(0)
摘要: package com.itheima; public class intger_01 { public static void main(String[] args) { Integer i1=new Integer(100);//根据int做创建Integer对象(过时) Integer i2= 阅读全文
posted @ 2022-11-01 21:29 NiceTwocu 阅读(33) 评论(0) 推荐(0)
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 24 下一页