2019年5月15日

day3

摘要: 爬虫python库1,requests 用来获取页面内容2,Beautiful Soup # 传入url,获取页面soup对象def getSoup(url): # 加入header防止网站防爬虫机制 请求头需要注意的参数: (1)Referrer:访问源至哪里来(一些大型网站,会通过Referre 阅读全文

posted @ 2019-05-15 00:40 看你妹儿 阅读(114) 评论(0) 推荐(0) 编辑

2019年5月14日

day2

摘要: python操作数据库import pymysqlDATABASE={ 'host':'localhost', 'database':'test', 'user':'root', 'password':'123456'}# 定义连接对象dbdb=pymysql.connect(**DATABASE) 阅读全文

posted @ 2019-05-14 16:37 看你妹儿 阅读(79) 评论(0) 推荐(0) 编辑

2019年5月11日

day1

摘要: 增强的格式化字符串函数 formata=1b=2c=3result="A={},B={},C={}".format(a,b,c)print(result) 语法糖 (交换a,b的值)a=1b=2a,b=b,aprint(a,b) round(10.1272,2) 确定小数保留位数(四舍五入) 字符串 阅读全文

posted @ 2019-05-11 16:24 看你妹儿 阅读(104) 评论(0) 推荐(0) 编辑

2016年9月9日

String格式时间处理

摘要: Date time1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss") .parse(intime); Date time2 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss") .parse(outtime); Lon 阅读全文

posted @ 2016-09-09 00:20 看你妹儿 阅读(282) 评论(0) 推荐(0) 编辑

2016年9月7日

web-xml配置

摘要: <?xml version="1.0" encoding="UTF-8"?><web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:sch 阅读全文

posted @ 2016-09-07 00:41 看你妹儿 阅读(131) 评论(0) 推荐(0) 编辑

方法实现案例

摘要: package com.gxa.bj.action; import java.io.IOException;import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.Date;import j 阅读全文

posted @ 2016-09-07 00:40 看你妹儿 阅读(191) 评论(0) 推荐(0) 编辑

springmvc.xml

摘要: <?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 阅读全文

posted @ 2016-09-07 00:39 看你妹儿 阅读(92) 评论(0) 推荐(0) 编辑

mybatis-config.xml

摘要: <?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dt 阅读全文

posted @ 2016-09-07 00:38 看你妹儿 阅读(107) 评论(0) 推荐(0) 编辑

log4j.properties

摘要: ## rootLogger\u662F\u6240\u6709\u65E5\u5FD7\u7684\u6839\u65E5\u5FD7,\u4FEE\u6539\u8BE5\u65E5\u5FD7\u5C5E\u6027\u5C06\u5BF9\u6240\u6709\u65E5\u5FD7\u8D 阅读全文

posted @ 2016-09-07 00:37 看你妹儿 阅读(234) 评论(0) 推荐(0) 编辑

applicationContext.xml

摘要: <?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:tx="http://www.springframework.org/schema/tx" x 阅读全文

posted @ 2016-09-07 00:35 看你妹儿 阅读(149) 评论(0) 推荐(0) 编辑

导航