public static String getRandomNumberString() { // It will generate 6 digit random Number. // from 0 to 999999 Random rnd = new Random(); int number = rnd.nextInt(999999); ...
java
java-打印流
打印流: 作用:打印流可以实现方便、高效的打印数据到文件中去。打印流一般是指:PrintStream,PrintWriter两个类 PrintStream和PrintWriter的区别: 打印数据功能上是一模一样的,都是使用方便,性能高...
解决springboot上传文件报错:临时文件不存在
问题:Java上传文件显示临时文件不存在 org.springframework.web.multipart.MultipartException: Could not parse multipart servlet request;nested exception is java.io.IOException: The temporary upload...
java中文件拷贝的几种方式
1.使用文件工具类静态方法直接拷贝 public static void copyFileByStream(File file, File fileTo) throws IOException { Files.copy(file.toPath(), fileTo.toPath()); } 2.传统FileOutPutStrea...
java插件化开发
1、插件接口定义(提供插件开发者实现) package com.zhong; public interface PluginService { public void service(); } 2、插件实体定义 package com.zhong; ...
java实现简单的RPC服务调用
基础准备: //UserEntity import java.io.Serializable; public class UserEntity implements Serializable { private Integer id; private String name; private String sex; // Getter ...
软件版本 —— Alpha、Beta、RC版本的区别
软件版本周期 α、β、λ 常用来表示软件测试过程中的三个阶段。 -- α 是第一阶段,一般只供内部测试使用; -- β是第二个阶段,已经消除了软件中大部分的不完善之处,但仍有可能还存在缺陷和漏洞,一般只提...
springboot(服务端接口)获取URL请求参数的几种方法
一、下面为7种服务端获取前端传过来的参数的方法 常用的方法为:@RequestParam和@RequestBody 1、直接把表单的参数写在Controller相应的方法的形参中,适用于get方式提交,不适用于post方式提交。 ...
Java实现PHP中的http_build_query()
背景: PHP实现的系统要跟Java系统通讯,通讯中要求验签,验签中需要使用PHP 的 http_build_query 一开始找下Java轮子: /** * Java实现PHP中的http_build_query()效果 * @param ar...
Java反射(通俗易懂)
1、反射介绍 Reflection(反射) 是 Java 程序开发语言的特征之一,它允许运行中的 Java 程序对自身进行检查。被private封装的资源只能类内部访问,外部是不行的,但反射能直接操作类私有属性。反射可以在...