123

2018年12月7日

eclipse错误:Access restriction: The type 'BASE64Decoder' is not API

摘要: Access restriction: The type ‘BASE64Decoder’ is not API (restriction on required library ‘D:\java\jdk1.7.0_45\jre\lib\rt.jar’) 解决其实很简单,把JRE System Lib 阅读全文

posted @ 2018-12-07 10:17 J依情 阅读(2137) 评论(0) 推荐(0) 编辑

2018年10月23日

常用正则表达式

摘要: 一、校验数字的表达式 汉字正则姓名2-6:/^[\u4e00-\u9fa5]{2,6}$/ig;数字字母下划线:/^\w{6,8}$/ig; 任意字符:/.{5,300}/ig 1 数字:^[0-9]*$2 n位的数字:^\d{n}$3 至少n位的数字:^\d{n,}$4 m-n位的数字:^\d{m 阅读全文

posted @ 2018-10-23 10:54 J依情 阅读(285) 评论(0) 推荐(1) 编辑

2018年9月19日

scss在ide的命令参数

摘要: %FileName% ../css/%FileBaseName%.css --sourcemap=none –style expanded 阅读全文

posted @ 2018-09-19 11:10 J依情 阅读(146) 评论(0) 推荐(0) 编辑

2018年8月16日

Viewpoint Meta标签

摘要: 移动web Viewpoint常用得设置方式: [布局viewpoint] = [设备宽度] = [度量viewpoint] <meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user 阅读全文

posted @ 2018-08-16 10:13 J依情 阅读(158) 评论(0) 推荐(0) 编辑

2018年8月14日

mysql项目路径URL编码

摘要: jdbc_url=jdbc:mysql://127.0.0.1:3306/test?serverTimezone=UTC&useUnicode=true&characterEncoding=UTF-8 阅读全文

posted @ 2018-08-14 19:38 J依情 阅读(433) 评论(0) 推荐(0) 编辑

2018年7月15日

html超出不自动换行

摘要: 1.使用overflow: hidden把超出的内容进行隐藏; 2.然后使用white-space: nowrap设置内容不换行; 3.最后使用text-overflow: ellipsis设置超出内容为省略号 阅读全文

posted @ 2018-07-15 17:26 J依情 阅读(568) 评论(0) 推荐(0) 编辑

Python35 升级 pip

摘要: 使用pip安装插件的时候报错: You are using pip version 8.1.1, however version 9.0.1 is available.You should consider upgrading via the 'python -m pip install --upg 阅读全文

posted @ 2018-07-15 16:08 J依情 阅读(180) 评论(0) 推荐(0) 编辑

2017年12月15日

Android------去除标题栏

摘要: 这里暂时只给出一种方法,在java代码中去除 1.继承Activity 在onCreate方法中 这句要写在 setContentView() 前面 2.继承AppCompatActivity 和1.同理,但把上面那句改成下面的这句 阅读全文

posted @ 2017-12-15 14:17 J依情 阅读(154) 评论(0) 推荐(0) 编辑

2017年12月14日

Android------BottonTabBar

摘要: 前言:一款简单好用封装好的AndroidUI控件,底部导航栏。 1.使用 1.1添加 compile 'com.hjm:BottomTabBar:1.1.1' 1.2 activity_main.xml Activity代码: 1.3 添加几个FramgLayout Activity 其中一个: 对 阅读全文

posted @ 2017-12-14 20:50 J依情 阅读(1027) 评论(0) 推荐(0) 编辑

2017年12月13日

Android基础------SQLite数据库(二)

摘要: 1.操作SQLite数据库 1.1 execSQL() 可以执行insert、delete、update和CREATE TABLE之类有更改行为的SQL语句 1.2 rawQuery() 可以执行select语句 1.3 cursor 游标,类似jdbc中的ResultSet 1.4 query() 阅读全文

posted @ 2017-12-13 15:51 J依情 阅读(172) 评论(0) 推荐(0) 编辑

导航