XML文件操作 实体类 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace XMLDemo { class Student { public string St ...
分类:
其他好文 时间:
2021-04-12 12:30:15
阅读次数:
0
【建表原则】 定长与边长相分离 常用与不常用相分离 适当反范式 【列类型选择】 int > date,time > enum,char > varchar > blob,text 字符串相对于整形要考虑字符集和校对集 尽量不用NULL 【btree索引 hash索引】 有必要使用联合索引(多列索引、 ...
分类:
数据库 时间:
2021-04-12 12:15:31
阅读次数:
0
1.仅水平居中: 1.1行内元素水平居中:text-align 1 <head> 2 <style> 3 #box { 4 width: 200px; 5 height: 200px; 6 border: 1px solid red; 7 /* 行内元素水平 */ 8 text-align: cen ...
分类:
其他好文 时间:
2021-04-12 12:06:07
阅读次数:
0
@author 作者名 @version 版本号 @since 指明需要最早使用的JDK版本 @param 参数名 @throws 异常抛出情况 @link {@link 包名.类名#方法名(参数类型)} 用于快速链接到相关代码 @code: {@code text} 将文本标记为code @ret ...
分类:
编程语言 时间:
2021-04-12 12:05:20
阅读次数:
0
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8" %> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" ...
分类:
Web程序 时间:
2021-04-12 11:51:40
阅读次数:
0
问题: jsp文件中文乱码问题 如图: 方法: 在jsp文件开头添加以下说明即可。 <%@ page contentType="text/html;charset=UTF-8" language="java" %> ...
分类:
Web程序 时间:
2021-04-10 13:10:12
阅读次数:
0
1.新建空白解决方案 EFCoreDemo ,添加一个Api项目 EFCoreDemo.API 和一个类库 EFCoreDemo.Model 2.EFCoreDemo.Model 中使用NuGet添加依赖项 : Microsoft.EntityFrameworkCore Microsoft.Enti ...
分类:
数据库 时间:
2021-04-10 13:06:42
阅读次数:
0
获取 itextsharp 包 files 图片文件路径列表 pdfFileName 输出的 pdf文件 public bool MergeFileToPDF(List<string> files,string pdfFileName) { iTextSharp.text.Document docu ...
win10彻底关闭自动更新方法步骤: 由于win10自动更新非常顽固,所以我们要从多个地方下手才能永久关闭其自动更新,别怕麻烦,跟着下面的步骤一步步操作。 一、禁用Windows Update服务 1、同时按下键盘 Win + R,打开运行对话框,然后输入命令 services.msc ,点击下方的 ...
text.1 x1, y1=1.2, 3.57 x2, y2=2.26, 8.7 print('{:-^40}'.format('输出1')) print('x1={}, y1 ={}'.format(x1, y1)) print('x2={}, y2 ={}'.format(x2,y2)) pri ...
分类:
其他好文 时间:
2021-04-09 13:25:16
阅读次数:
0