/** * 自定义样式 * <p>1. 创建excel对应的实体对象 参照{@link DemoData} * <p>2. 创建一个style策略 并注册 * <p>3. 直接写即可 */ @Test public void styleWrite() { String fileName = Test ...
分类:
其他好文 时间:
2021-06-25 16:46:34
阅读次数:
0
mysql引擎 create table t_mysql ( id Int32, name String, ) engine = MySQL('127.0.0.1:3306', 'test', 't', 'root', '123456'); mysql进行ddl: alter table t mod ...
分类:
其他好文 时间:
2021-06-25 16:44:37
阅读次数:
0
前言记得刚找工作那会,几种数据类型是必问题,当时的答案一般都是七种——字符串(String)、数字(Number)、布尔(Boolean)、数组(Array)、对象(Object)、空(Null)、未定义(Undefined),时至今日,某些网络教程上还是这样的分类:其实,随着 ECMAScript ...
分类:
其他好文 时间:
2021-06-25 16:35:01
阅读次数:
0
数字转换为中文大写方法 例如: int num = 725; string result=MoneyToCharacter(num); result输出结果为“柒佰叁拾伍元整” 1 private string MoneyToCharacter(decimal Money) 2 { 3 string ...
被调用类 import java.util.Arrays; public class TestMain { public static void main(String[] args) { System.out.println("TestMain"); } public static void te ...
分类:
编程语言 时间:
2021-06-24 17:56:28
阅读次数:
0
新建一个工程项目 开启本地的mysql数据库 配置mysql连接信息 编写测试类 package com.atguigu.springboot06jdbc; import org.junit.jupiter.api.Test; import org.springframework.beans.fac ...
分类:
编程语言 时间:
2021-06-23 17:18:23
阅读次数:
0
1B(byte 字节) = 8bit(位) 字节简介 序号 数据类型 大小/位 占用字节 1 float 32 4 2 double 64 8 示例 public class Demo { public static void main(String[] args) { // 定义一个float类型 ...
分类:
其他好文 时间:
2021-06-23 17:16:21
阅读次数:
0
PreparedStatement针对不同表的通用查询操作 public class PreparedStatementQueryTest { @Test public void testGetForList(){ String sql="select id,name,email from cust ...
分类:
其他好文 时间:
2021-06-23 17:15:36
阅读次数:
0
helloworld 1.随便新建一个文件夹,存放代码 2.新建一个JAVA文件 文件名后缀.java Hello.java 3.编写代码 public class hay{ public static void main(String[] args){ System.out.print("Hell ...
分类:
其他好文 时间:
2021-06-23 17:10:40
阅读次数:
0
input框 <div id="example"></div> <script type="text/babel"> class Content extends React.Component { render() { return <div> <input type="text" value={t ...
分类:
其他好文 时间:
2021-06-23 16:49:23
阅读次数:
0