数字转换为中文大写方法 例如: int num = 725; string result=MoneyToCharacter(num); result输出结果为“柒佰叁拾伍元整” 1 private string MoneyToCharacter(decimal Money) 2 { 3 string ...
数组 定义方式 类型[] 数组名 = new 数组类型[长度]; 然后靠下标去逐个添加 也可以直接写死 类型[] 名 = {内容}; package com.li.array; /** * @创建人 语零 * @时间 2021-06-24-8:55 * @描述 */ public class Arr ...
分类:
编程语言 时间:
2021-06-24 18:04:43
阅读次数:
0
被调用类 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
目录 一、RAID磁盘阵列 二、阵列卡概述 三、阵列卡的缓存 四、创建RAID 五、创建软RAID磁盘阵列 一、RAID磁盘阵列 是Redundant Array of Independent Disks的缩写,中文简称为独立冗余磁盘阵列 把多块独立的物理硬盘按不同的方式组合起来形成一个硬盘组(逻辑 ...
分类:
系统相关 时间:
2021-06-24 17:40:30
阅读次数:
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
使用gist检测恶意文件的代码——TODO,看实际效果 import os import scipy import array filename = '<Malware_File_Name_Here>'; f = open(filename,'rb'); ln = os.path.getsize(f ...
分类:
编程语言 时间:
2021-06-23 17:17:51
阅读次数:
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