摘要: (解析器)DocumentBuilder.parse(File f) 将给定文件的内容解析为一个 XML 文档,并且返回一个新的 DOM Document 对象。 通过解析器 解析文档后得到的返回类型是Document接口类型的实现类 Document,Element是Node(节点)的子接口 DO 阅读全文
posted @ 2017-05-28 16:11 m97i 阅读(74) 评论(0) 推荐(0) 编辑
摘要: (function(a,b){console.log(a+","+b)})(1,2) 语法1:<script type="text/javascript"> <!-- document.write("hello,JavaScript"); --></script>语法2:<body onload=" 阅读全文
posted @ 2017-05-28 16:10 m97i 阅读(93) 评论(0) 推荐(0) 编辑
摘要: windowhistory 前进后退location 地址栏document 文档内容 historyhistory.forward() //前进到下个页面history.back() //返回到上个页面 history.go(n); n为-1 返回上个页面n为1 前进下个页面n为0 刷新当前页面 阅读全文
posted @ 2017-05-28 16:09 m97i 阅读(89) 评论(0) 推荐(0) 编辑
摘要: private static Properties properties; properties.load(is); 报错 进入build path 在Libraries 修改jre Sun JDK1.6 解决问题 阅读全文
posted @ 2017-05-28 08:25 m97i 阅读(844) 评论(0) 推荐(0) 编辑
摘要: Eclipse-->Preferences MyEclipse--> Window -->Preferences 搜索关键词 context type 点击右边的Text,选择java Properties File File associatios: 添加文件格式 *.jsp Default en 阅读全文
posted @ 2017-05-26 21:53 m97i 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 配置信息: (mysql) jdbc.driver.class=com.mysql.jdbc.Driver (数据库驱动) jdbc.connection.url=jdbc:mysql://127.0.0.1:3306/sql (sql为数据库名) jdbc.connection.username= 阅读全文
posted @ 2017-05-25 11:39 m97i 阅读(97) 评论(0) 推荐(0) 编辑