上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 17 下一页
摘要: 总结:css引用:1内联:在标签中加style属性,<标签名 style="样式1:样式值1;样式2:样式值2"> </标签名>。2.内嵌:在head标签中加style属性,选择器1{样式1:样式值1;样式2: 样式值2;}。3外联:单独建立一个css文件。在html文件中head标签里写link标 阅读全文
posted @ 2019-06-17 16:06 韩凯 阅读(80) 评论(0) 推荐(0) 编辑
摘要: <!doctype html><html><head><meta charset="utf-8"><title>无标题文档</title><!--表格: <table border="设置表格边框的粗细 单位(px)" width="设置表格的宽度" height="设置表格的高度" cellspa 阅读全文
posted @ 2019-06-14 16:51 韩凯 阅读(131) 评论(0) 推荐(0) 编辑
摘要: <!doctype html><html><head><meta charset="utf-8"><title>无标题文档</title><!--图像标签<img src='图片的地址' alt='当图片显示不出来时所替换的文字'title="当鼠标放到图片上显示的文字"1、路径:绝对路径:F:\讲 阅读全文
posted @ 2019-06-14 16:50 韩凯 阅读(260) 评论(0) 推荐(0) 编辑
摘要: <!doctype html><!--//声明当前文档是html文件--><html><!--标签之间可以互相嵌套,标签中可以加其他标签和文本--><head><!--//双标签--><meta charset="utf-8"> <!--//单标签--><title>百度一下,你就知道</title 阅读全文
posted @ 2019-06-11 15:58 韩凯 阅读(324) 评论(0) 推荐(0) 编辑
摘要: package Zy; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.util.Properties; import java.util.Set; /*2.... 阅读全文
posted @ 2018-06-25 16:27 韩凯 阅读(142) 评论(0) 推荐(0) 编辑
摘要: package Zy; import java.io.Serializable; public class Student implements Serializable{ private static final long serialVersionUID = 55645321545L; private String name; private String gen... 阅读全文
posted @ 2018-06-25 16:24 韩凯 阅读(167) 评论(0) 推荐(0) 编辑
摘要: package Zjshuchu; import java.util.Properties; import java.util.Set; public class Demo03 { public static void main(String[] args) { Properties pro=new Properties(); //设置添加值setP... 阅读全文
posted @ 2018-06-25 16:23 韩凯 阅读(204) 评论(0) 推荐(0) 编辑
摘要: package Zjshuchu; import java.io.BufferedWriter; import java.io.FileWriter; import java.io.IOException; public class Demo01 { //字符缓冲输出流 public static void main(String[] args) throws IOExce... 阅读全文
posted @ 2018-06-25 16:21 韩凯 阅读(90) 评论(0) 推荐(0) 编辑
摘要: package Zjshuchu;import java.io.Serializable;public class Dog implements Serializable{ private static final long serialVersionUID = 45156465448L; priv 阅读全文
posted @ 2018-06-25 16:20 韩凯 阅读(100) 评论(0) 推荐(0) 编辑
摘要: package Zjshuchu; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException... 阅读全文
posted @ 2018-06-25 16:18 韩凯 阅读(105) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 17 下一页