百度
1 2 3 4 5 ··· 51 下一页
摘要: 第 1 步:准备工作 假设: MinIO 已安装,例如在 /usr/local/bin/minio 你已有一个指向本机的域名(例如 minio.example.com),用于申请 SSL 证书 系统防火墙已开放端口 9000 (API) 和 9001 (控制台) 停止正在运行的 MinIO 服务 # 阅读全文
posted @ 2026-04-01 21:18 麦克斯-侯 阅读(12) 评论(0) 推荐(0)
摘要: 解决办法 以前在pages.json里面的写法: "easycom": { "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue" } 但是现在hbuilderx要求规范easycom的写法,所以要改为 "easycom": { "custom": { "^u- 阅读全文
posted @ 2025-03-24 18:40 麦克斯-侯 阅读(69) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>本网站已建立</title> </head> <body> <h1 id="time"></h1> </body> </html> <script> funct 阅读全文
posted @ 2024-11-18 17:58 麦克斯-侯 阅读(38) 评论(0) 推荐(0)
摘要: INSERT INTO Customers(CustomerName,ContactName,Address,City,PostalCode,Country) VALUES (?,?,?,?,?,?); INSERT INTO 表名(字段名1,字段名2...) values(?,?,?,) ?是占位 阅读全文
posted @ 2024-11-11 11:58 麦克斯-侯 阅读(38) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2024-11-07 20:13 麦克斯-侯 阅读(17) 评论(0) 推荐(0)
摘要: CREATE DATABASE 数据库名;//创建数据库 SHOW databases;//查看数据库列表 USE 数据库名;//选择数据库 DROP DATABASE 数据库名://删除数据库 建表示例 CREATE TABLE admin2( id int(11) NOT NULL AUTO_I 阅读全文
posted @ 2024-11-07 18:46 麦克斯-侯 阅读(26) 评论(0) 推荐(0)
摘要: public class SerializableObj { public static void main(String[] args) { ObjectOutputStream oos=null; try{ //1.创建ObjectOutputStream输出流 oos =new ObjectO 阅读全文
posted @ 2024-10-05 18:24 麦克斯-侯 阅读(28) 评论(0) 推荐(0)
摘要: public class DataInOutTest { public static void main(String[] args) { DataOutputStream dos=null; DataInputStream dis=null; FileInputStream fis=null; F 阅读全文
posted @ 2024-10-05 18:23 麦克斯-侯 阅读(27) 评论(0) 推荐(0)
摘要: public class FileReaderTest { public static void main(String[] args) { Reader fr=null; try{ //2.实例化FileReader对象 fr =new FileReader("D:\\doc\\诗词.txt"); 阅读全文
posted @ 2024-10-05 18:22 麦克斯-侯 阅读(27) 评论(0) 推荐(0)
摘要: public class FileWriterTest { public static void main(String[] args) { Writer fw=null; try{ //创建FileWriter对象 fw =new FileWriter("D:\\DOC\\mysaying.txt 阅读全文
posted @ 2024-10-05 18:22 麦克斯-侯 阅读(23) 评论(0) 推荐(0)
1 2 3 4 5 ··· 51 下一页
百度