摘要: 三种模式 阅读全文
posted @ 2020-06-23 08:38 zcm1998 阅读(118) 评论(0) 推荐(0) 编辑
摘要: C语言 Void main() { unsigned int num1,num2; //16位 scanf(“\nEnter the 1st number:%d”,&num1); scanf(“\nEnter the 2nd number:%d”,&num2); Printf(“The sum = 阅读全文
posted @ 2020-05-17 21:01 zcm1998 阅读(1247) 评论(0) 推荐(0) 编辑
摘要: #打开 workbook=openpyxl.load_workbook(path) #得到sheet sheets=workbook.get_sheet_names() sh=workbook[sheets[i]] workbook.get_sheet_by_name("") #读取cell,col 阅读全文
posted @ 2020-04-20 18:07 zcm1998 阅读(161) 评论(0) 推荐(0) 编辑
摘要: BufferedWriter 和 BufferedReader 为带有默认缓冲的字符输出输入流,因为有缓冲区所以很效率比没有缓冲区的很高。 BufferedWriter主要方法: void write(char ch);//写入单个字符。 void write(char []cbuf,int off 阅读全文
posted @ 2020-03-28 18:29 zcm1998 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 1. https://www.oschina.net/news/111153/gitee-private-email-protected 2. Git提交时warning: LF will be replaced by CRLF in WebContent/js/ww.js. The file wi 阅读全文
posted @ 2020-03-15 18:18 zcm1998 阅读(107) 评论(0) 推荐(0) 编辑
摘要: package Controller; public class TranslationStr { public String HtmltoStr(String newText) { // newText = newText.replace("\n", "<br>"); //textBox里的换行是 阅读全文
posted @ 2020-03-12 20:16 zcm1998 阅读(458) 评论(0) 推荐(0) 编辑
摘要: 向数据库存储数据报错 com.microsoft.sqlserver.jdbc.SQLServerException:该语句没有返回结果集 错误代码 rs=stmt.executeQuery(sql); 解决方法 int count=stmt.executeUpdate(sql); 总结: stmt 阅读全文
posted @ 2020-03-12 19:07 zcm1998 阅读(2331) 评论(0) 推荐(0) 编辑
摘要: 我的问题是插入String类型数据,报错。解决后总结 insert into 表名 (列名1,列名2......) values ('字符串1','字符串2',.......); 需要插入的value使用单引号 如果插入String类型value insert into 表名 (列名) values 阅读全文
posted @ 2020-03-12 18:55 zcm1998 阅读(2224) 评论(0) 推荐(0) 编辑
摘要: 数据库:SQL Server 编辑器:java-->eclipse,html,css,js >vs Code 前后端数据交互:ajax与servlet之间传输json数据 设计模式:mvc 练习重点:1,Ajax与servlet传输数据 2,拦截器filter 3,用cookie,session和拦 阅读全文
posted @ 2020-03-06 20:33 zcm1998 阅读(131) 评论(0) 推荐(0) 编辑
摘要: import selenium from selenium import webdriver import re browser = webdriver.Chrome() #avid拼接url AVID="AV90756001" url="https://search.bilibili.com/al 阅读全文
posted @ 2020-03-06 20:24 zcm1998 阅读(674) 评论(0) 推荐(0) 编辑