上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 24 下一页
摘要: 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 阅读(21) 评论(0) 推荐(0) 编辑
摘要: #这里创建库需要注意给库设置默认编码和排序规则 create database db2 default CHARACTER set utf8 collate utf8_general_ci; #创建后如果忘记设置编码和排序规则 可以通过以下语句修改 alter DATABASE db1 defaul 阅读全文
posted @ 2022-11-02 22:31 NiceTwocu 阅读(25) 评论(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 阅读(19) 评论(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 阅读(36) 评论(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 阅读(26) 评论(0) 推荐(0) 编辑
摘要: package com.itheima; import javax.swing.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.nio.charset.StandardCh 阅读全文
posted @ 2022-11-01 20:10 NiceTwocu 阅读(30) 评论(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-10-31 23:26 NiceTwocu 阅读(70) 评论(0) 推荐(0) 编辑
摘要: package com.itheima; import javax.swing.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; public class tologin { public stat 阅读全文
posted @ 2022-10-31 22:27 NiceTwocu 阅读(32) 评论(0) 推荐(0) 编辑
摘要: package com.itheima; public class string_02 { public static void main(String[] args) { String s1="itheima"; String s2="itheima"; String s3="Itheima"; 阅读全文
posted @ 2022-10-31 21:38 NiceTwocu 阅读(20) 评论(0) 推荐(0) 编辑
摘要: package com.itheima; public class string_01 { public static void main(String[] args) { String s1=new String(); System.out.println(s1); System.out.prin 阅读全文
posted @ 2022-10-31 21:27 NiceTwocu 阅读(18) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 24 下一页