摘要: 问题描述 : 网页成功被 Bing 搜索引擎收录,但图标却没有被收录。在 Bing 中搜索自己的网页,在网站的左侧无法显示图标,而是显示一个灰色小地球,别人的网站左侧却可以正常显示图标。 问题的原因在于,Bing 没有收录你的网站的图标。 准备 想要 Bing 收录你的图标,首先你的网站应该有一个图 阅读全文
posted @ 2025-09-08 09:17 磊子记 阅读(146) 评论(0) 推荐(0)
摘要: 想找一个小团队, 写一个插件,有技术有能力的人请联系我。 阅读全文
posted @ 2025-08-06 14:20 磊子记 阅读(7) 评论(0) 推荐(0)
摘要: package test2;import java.io.Serializable;public class Student implements Serializable { //private static final long serialVersionUID = 1L; private St 阅读全文
posted @ 2023-04-26 17:50 磊子记 阅读(43) 评论(0) 推荐(0)
摘要: package test2;import java.io.*;//对象专用流public class Demo04 { public static void main(String[] args) { FileOutputStream fos = null; ObjectOutputStream o 阅读全文
posted @ 2023-04-26 17:49 磊子记 阅读(20) 评论(0) 推荐(0)
摘要: package test2;import java.io.*;//转换流public class Demo03 { public static void main(String[] args) { FileOutputStream fos = null; FileInputStream fis = 阅读全文
posted @ 2023-04-26 17:48 磊子记 阅读(22) 评论(0) 推荐(0)
摘要: package test2;import java.io.*;//缓冲流public class Demo02 { public static void main(String[] args) { FileInputStream fis = null; FileOutputStream fos = 阅读全文
posted @ 2023-04-26 17:47 磊子记 阅读(36) 评论(0) 推荐(0)
摘要: public static void main(String[] args) { HashMap<String, String> map = new HashMap(); map.put("name", "张三"); map.put("age", "18"); map.put("sex", "男") 阅读全文
posted @ 2023-04-17 17:38 磊子记 阅读(34) 评论(0) 推荐(0)
摘要: public static void main(String[] args) { ArrayList arrayList = new ArrayList(); arrayList.add("A"); HashMap<String, String> map = new HashMap(); //put 阅读全文
posted @ 2023-04-17 17:37 磊子记 阅读(43) 评论(0) 推荐(0)
摘要: package Fighting_xulei.com;//这是一个文件名(类名)public class leizi { //这是包名,文件运行的地方 public static void main(String[] args) { //提供一个运行方法; //表示行数 for(int i=1;i< 阅读全文
posted @ 2023-02-25 16:24 磊子记 阅读(57) 评论(0) 推荐(0)
摘要: ## 类型转换 > **二进制** > > 1. 在计算机运算的时候,都是以 **补码** 的方式来运算的。 > 2. 二进制 转为 十进制,必须使用 **二进制的原码** 进行转换 。 #### 转换规则 ##### 谨记 > **第一条:**八种数据类型中,除boolean不能转换,剩下的七种都 阅读全文
posted @ 2023-02-20 11:32 磊子记 阅读(109) 评论(0) 推荐(0)