摘要: public class ScTypeEntity { private String id; private String name; public String getId() { return id; } public void setId(String id) { this.id = id; 阅读全文
posted @ 2020-08-24 19:05 浮云7 阅读(102) 评论(0) 推荐(0)
摘要: import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.IOException;imp 阅读全文
posted @ 2020-08-24 19:02 浮云7 阅读(161) 评论(0) 推荐(0)
摘要: import java.io.UnsupportedEncodingException;import java.math.BigDecimal;import java.util.ArrayList;import java.util.HashMap;import java.util.LinkedHas 阅读全文
posted @ 2020-08-24 19:01 浮云7 阅读(933) 评论(1) 推荐(0)
摘要: import java.time.LocalDateTime; import java.util.Arrays; import java.util.Random; /** * @desc 插入排序 * 思路分析: * (1)把n个待排序的元素看成为一个有序表和一个无序表,开始时有序表只包含一个元素, 阅读全文
posted @ 2020-08-08 13:48 浮云7 阅读(74) 评论(0) 推荐(0)
摘要: import java.util.Arrays; /** * @desc 冒泡排序 * 案例:arr[] = {3, 9, -1, 10, 20} * 思路分析: * 1.两层for循环遍历待排序的数组,i的index=[0,arr.length-1],j的index=[0,arr.length-1 阅读全文
posted @ 2020-08-08 13:44 浮云7 阅读(59) 评论(0) 推荐(0)
摘要: /** * @desc 线性查找 * 案例: * {1, 8, 10, 89, 1000, 1234} */ public class OrderSearch { public static void main(String[] args) { int[] arr = {1, 8, 10, 89, 阅读全文
posted @ 2020-08-08 13:42 浮云7 阅读(45) 评论(0) 推荐(0)
摘要: 前言Spring一直是很火的一个开源框架,在过去的一段时间里,Spring Boot在社区中热度一直很高,所以决定花时间来了解和学习,为自己做技术储备。正文首先声明,Spring Boot不是一门新技术,所以不用紧张。从本质上来说,Spring Boot就是Spring,它做了那些没有它你也会去做的 阅读全文
posted @ 2020-07-22 15:28 浮云7 阅读(23) 评论(0) 推荐(0)
摘要: 一、ORACLE的启动和关闭1、在单机环境下要想启动或关闭ORACLE系统必须首先切换到ORACLE用户,如下su - oracle a、启动ORACLE系统oracle>svrmgrlSVRMGR>connect internalSVRMGR>startupSVRMGR>quit b、关闭ORAC 阅读全文
posted @ 2020-07-22 15:26 浮云7 阅读(148) 评论(0) 推荐(0)
Live2D