- 博客(19)
- 收藏
- 关注
原创 通过Arthas不停机更新class文件
下载Atrhas:https://arthas.aliyun.com/arthas-boot.jar。启动Arthas:java -jar arthas-boot.jar。获取要热更新class文件的classLoaderHash。实现不停机更新jvm中的class文件。修改源码并编译后得到class文件。
2023-08-18 15:30:20
323
原创 使用docker快速部署单机rocketmq和console
在centos7上使用docker-compose快速部署rocketmq的nameserver、broker及console
2022-12-21 22:10:25
391
原创 操作BOM对象
操作BOM对象window:代表浏览器窗口navigator:封装了screen:代表屏幕location:代表当前页面的URL信息host: "www.bilibili.com"href: "https://www.bilibili.com/"port: ""protocol: "https:"//刷新网页reload: ƒ reload();//设置新地址location.assign("https://www.bilibili.com");document
2020-08-26 20:40:53
148
原创 JavaScript中常用内部对象
JavaScript中常用内部对象1. Date基本使用let now = new Date();//年let fullYear = now.getFullYear();//月(下标)let month = now.getMonth();//日let date = now.getDate();//星期几let day = now.getDay();//时let hours = now.getHours();//分let minutes = now.getMinutes()
2020-08-26 19:36:22
246
原创 JavaScript中类的基本用法
JavaScript面向对象编码1. 定义一个类、属性、方法????//定义学生类(ES6新特性)class Student{ constructor(name) { this.name = name; } sayHello() { console.log('hello world'); }}let student = new Student('zyl');浏览器控制台打印输出2. 继承????class Collage
2020-08-26 19:32:12
233
原创 Java中序列化流的基本使用
序列化流高级流需要依托低级流ObjectOutputStreamObjectInputStreamObjectOutputStream将java对象写入文件基本用法@Testpublic void objectOutputStreamTest(){ try { FileOutputStream outputStream = new FileOutputStream("E:/ObjectOutputStreamTest.txt"); //使
2020-08-06 12:47:58
157
原创 Java中转换流的基本用法
转换流InputStreamReader是Reader的子类,是字节流到字符流的桥梁,读取字节时,使用其指定的字符集将其解码为字符。基本用法@Testpublic void InputStreamReadTest(){ try { File file = new File("E:/test.txt"); //第二个参数指定以什么编码格式读 InputStreamReader reader = new InputStreamRead
2020-08-06 11:42:31
231
原创 BufferReader和BufferWriter的基本使用
BufferedReader高级流需要依托低级流(FileReader)字符流最简单的使用方法@Testpublic void bufferedReaderWriterTest(){ try{ BufferedReader bufferedReader = new BufferedReader(new FileReader("E:/BufferReaderTest.txt")); String line = null; //
2020-08-05 13:28:35
1334
原创 BufferedInputStream&BufferedOutputStream的基本用法
BufferedInput&OutputStream高级流需要依托低级流(FileInputStream&FileOutputStream)字节流使用原因:基本流(FileInputOutputStreamTest)读写文件的速度相对较慢@Testpublic void FileInputOutputStreamTest() { long startTime = System.currentTimeMillis(); try{ fis =
2020-08-05 13:25:58
380
原创 FileWriter和FileReader的基本使用
FileWriter(字符流)最简单的方式写入字符串标准流程(写入->刷新->关闭)@Testpublic void fileWriteTest1() throws IOException { FileWriter fileWriter = new FileWriter("E:/fileWriteTest.txt"); //向缓冲区写入数据(此时数据还没有写入硬盘) fileWriter.write("赵玉龙"); //刷新缓冲区(此时数据才会被写
2020-08-05 13:21:04
230
原创 Java中的缓冲流简介
缓冲流高效流分类字节缓冲流BufferedInputStreamBufferedOutputStream字符缓冲流BufferedReaderBuffered Writer原理在创建对象时,会自动创建一个内置的默认大小的缓冲区数组,通过缓冲区的读写,减少IO的次数,从而提高效率。...
2020-08-05 13:20:06
129
原创 FileInputStream和FileOutputStream的基本用法
FileOutputStream(字节流)void write( byte b[] )直接写入指定字符的字节流@Testpublic void writeTest() throws Exception { File file = new File("E:/test.txt"); FileOutputStream fos = new FileOutputStream(file,true); byte[] b = {65,66,67,68,69,70}; byte
2020-08-05 13:17:07
502
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人