For you No one wants to die. Even people who want to go to heaven don’t want to die to get there. And yet death is the destination we all share. No one has ever escaped it. And that is as it should be, becaus 2025-04-28 #随笔
Float横向布局 Time: 2024-09-19 Thursday 12:49:01 Author: Jackasher Float横向布局 试着利用float完成页面的布局,这样就可以开始完成基本的页面了 浮动的解决基本就是clear,然后垂直居中显示可以用line-height 12345678910111213141516171819202122232425262728293031323334353637 2025-04-28 Jack #Blog
GitHub ReadME Time: 2024-05-27 星期一 22:12:29 Author: Jackasher GitHub ReadME.md 项目名称 325的集成化网站系统 项目简介 springmvc的初始架构,基本框架和配置文件,可以拿来直接使用,包含了pom文件,可以直接maven获取依赖 功能特点 列出你的项目的主要功能和特点。可以使用列表或表格。 功能1:提供学校论坛功能 功能2:拥有评论系统, 2025-04-28 Jack #Blog
HTML格式 Time: 2024-07-19 Friday 11:53:01 Author: Jackasher HTML格式 表格 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455<table border="1" width=& 2025-04-28 Jack #Blog
Hello No one wants to die. Even people who want to go to heaven don’t want to die to get there. And yet death is the destination we all share. No one has ever escaped it. And that is as it should be, becaus 2025-04-28
Hexo with CDN Time: 2024-04-12 15:52:40 Author: Jackasher Hexo with CDN 采用了阿里的cdn后,默认会访问阿里云的数据缓存,所以自己部署的页面会暂时访问不了,需要到CDN刷新自己的目录才可以立即访问,又是折腾了两天 2025-04-28 Jack #Blog
HexoShell Time: 2024-04-12 04:29:32 Author: Jackasher HexoShell 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657#!/bin/bash# 设置Hexo博客目录hexo_dir="/ro 2025-04-28 2024-4-12 #4:29:15
HttpURL Time: 2024-04-10 16:32:26 Author: Jackasher HttpURL 模拟浏览器发生请求,User-Agent,Method和URL是必须的,接下来模拟浏览器发生请求 12345678910111213141516171819//创建HttpUrlHttpURLConnection httpURLConnection = (HttpURLConnection)ur 2025-04-28 Jack #Blog
IO流 I/O流 FileInPutStream/FileOutPutStream 按照字节读取,一次读一个字节,所有类型文件都可以读, 123456789101112InputStresm in = new FileInputStream();//创建一个流,建立连接int count = in.read();//读取文件字节//当count=-1时,读取完毕in.read("byte[]&q 2025-04-28