上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页
摘要: 配置adb shell的环境变量(或者直接在目录下E:\Users\51394\AppData\Local\Android\sdk\platform-tools>adb shell) 使用cd命令进入到/data/data/<package>/databases/下面 ls:查看该目录里的文件 sq 阅读全文
posted @ 2018-06-15 11:32 Ice_Blue_Brother 阅读(112) 评论(0) 推荐(0) 编辑
摘要: project -> Generate javadoc 在VM设置中加入以下代码:-encoding utf-8 -charset utf-8 阅读全文
posted @ 2018-06-13 15:36 Ice_Blue_Brother 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 先注册一个账号 https://gitee.com/ 或 https://github.com/ 下载git并安装 https://gitforwindows.org/ 在开始页面打开 Git Bash 目录: 一、配置身份并创建本地仓库 二、提交本地代码 三、忽略文件 四、查看修改内容 五、撤销未 阅读全文
posted @ 2018-06-12 16:25 Ice_Blue_Brother 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 行转列 select * from (select name, nums from demo/*任意查询语句*/) pivot (sum(nums) for name in ('测试1' 测试1, '测试2', '测试3'));也可以用wm_concat函数 列转行 select id , name 阅读全文
posted @ 2018-06-11 14:03 Ice_Blue_Brother 阅读(2491) 评论(0) 推荐(0) 编辑
摘要: String newstr=new String(pc.getBytes("ISO-8859-1"), "UTF-8"); 阅读全文
posted @ 2018-06-05 09:50 Ice_Blue_Brother 阅读(312) 评论(0) 推荐(0) 编辑
摘要: String sftimeString="^[0-9]*:[0-9]*:[0-9]*$"; Pattern pattern=Pattern.compile(sftimeString); if(pattern.matcher(jtxx.getSc()).matches()){ //匹配后的逻辑 } 阅读全文
posted @ 2018-06-05 09:46 Ice_Blue_Brother 阅读(1989) 评论(0) 推荐(0) 编辑
摘要: create tablespace TEST --表空间名称 datafile '/home/oracle/app/oracle/product/11.2.0/dbhome_1/dbs/TEST.DBF' --路径 size 1G --大小 autoextend on next 1G; --自增长 阅读全文
posted @ 2018-05-21 15:38 Ice_Blue_Brother 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 访问系统网络状态的权限: 阅读全文
posted @ 2018-05-18 11:47 Ice_Blue_Brother 阅读(316) 评论(0) 推荐(0) 编辑
摘要: 新建 阅读全文
posted @ 2018-05-18 11:31 Ice_Blue_Brother 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 不过我个人更喜欢用下面这种 sw<N>dp,如layout-sw600dp, values-sw600dp:最小宽度限定符(不管横置,竖置,以最小边为准) w<N>dp 如layout-w600dp, values-w600dp:宽度限定符(以当前屏幕的宽为准,横置就是长那边,竖置就是短那边) h< 阅读全文
posted @ 2018-05-18 09:09 Ice_Blue_Brother 阅读(582) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页