需求 某分布式系统中,主节点可以有多台,可以动态上下线,任意一台客户端都能实时感知到主节点服务器的上下线。 设计 实现 public class DistributeServer { public static void main(String[] args) throws Exception { ...
分类:
其他好文 时间:
2021-07-21 17:32:52
阅读次数:
0
代码出异常常见的处理方法 try catch捕获 throws 声明异常 往外抛出 语法:throws字句放在方法参数列表的右括号之后,一个方法可以声明抛出多个异常,多个异常之间用逗号隔开。 例子 public class Main{ public static void readChar() th ...
分类:
编程语言 时间:
2021-07-19 16:50:19
阅读次数:
0
准备工作 public class MainClass { public static void main(String[] args) throws Exception { String resources = "mybatis-config.xml"; InputStream inputStre ...
分类:
其他好文 时间:
2021-07-07 17:50:47
阅读次数:
0
获取类路径下文件的绝对路径 在IDEA软件中,src是类的根路径。 package com.happy.reflection; public class AboutPath { public static void main(String[] args) { String path = Thread ...
分类:
其他好文 时间:
2021-07-05 18:39:57
阅读次数:
0
客户端 1 public static void main(String[] args) throws IOException { 2 3 4 5 // 创建客户端 6 7 SocketChannel sc = SocketChannel.open(); 8 9 10 11 // 指定要连接的服务器 ...
分类:
编程语言 时间:
2021-07-02 16:40:13
阅读次数:
0
1.会编程,参考实验 1.1编程实现词频统计基本操作 主函数 public static void main(String[] args) throws Exception{ Configuration conf = new Configuration(); //程序运行时参数 String[] o ...
分类:
其他好文 时间:
2021-06-29 16:02:29
阅读次数:
0
SpringBoot + FastDFS(只实现上传) 搭建好FastDFS服务器后,使用Springboot集成fastdfs-client实现文件上传。 1、搭建FastDFS服务 为了简洁配置FastDFS服务,使用Docker搭建环境。 https://www.cnblogs.com/mjo ...
分类:
编程语言 时间:
2021-06-29 15:23:12
阅读次数:
0
包机制 为了更好的组织类,java提供了包机制,用于区别类名的命名空间 包语句的语法格式为: package pkg1.pkg2...; 一般利用公司域名倒置作为包名 为了能够使用某一个包的成员,我们需要在java程序中国呢明确导入该包。使用 import 语句可以完成此功能。 Import pkg ...
分类:
编程语言 时间:
2021-06-28 20:24:41
阅读次数:
0
zkClient操作 基本增删改查代码如下 public class createSession { public static void main(String[] args) { ZkClient zkClient = new ZkClient("119.45.52.68:2181"); Sys ...
分类:
其他好文 时间:
2021-06-28 18:01:05
阅读次数:
0
1 package com.yubaby.reflect; 2 3 import com.yubaby.domain.Person; 4 5 /* 6 2 反射:框架设计的灵魂 7 8 * 框架:半成品软件。可以在框架的基础上进行软件开发,简化编码 9 * 反射:将类的各个组成部分封装为其他对象,这 ...
分类:
编程语言 时间:
2021-06-23 16:22:46
阅读次数:
0