码迷,mamicode.com
首页 >  
搜索关键字:rgb    ( 5110个结果
Android实现水平虚线和竖直虚线
水平虚线 shape: line-horizontal.xml <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape ...
分类:移动开发   时间:2021-03-09 13:55:09    阅读次数:0
idea中将单个java类导出为jar包文件的方法
方法如下: 1. 写好功能工具类,如: public class Hello { public static void main(String[] args) throws Exception { Hello hello = new Hello(); hello.sayHello("word. bi ...
分类:编程语言   时间:2021-03-09 13:53:56    阅读次数:0
[GXYCTF2019]BabySQli 1利用联合查询插入数据
1. 首页只是一个登录框,f12没有有用信息,尝试用admin和password登录 2. 提示密码错误,说明账号也许是对的。 同时按f12有一段注释,注释为全大写字母与数字,猜测是base32加密: base32解密后得到一串字符疑似为base64加密: base64解密后得到一个提示: 3. 暂 ...
分类:数据库   时间:2021-03-09 13:40:26    阅读次数:0
VB判断EXE文件是否打开。
试了好多种,这个方法蛮好用的。有更好的,希望大家多多指教。 Dim ProNo As Integer, ProStr As String ProNo = IsRunning("SSS.exe") If ProNo = 0 Then Shell App.path & "\SSS.exe '" & st ...
分类:其他好文   时间:2021-03-09 13:17:05    阅读次数:0
java 项目源码大全 主流框架
官网:www.fhadmin.org springboot框架 vue.js 前后分离 1.【 点击进入】 【框架平台】springboot 框架 vue.js 前后分离 时尚风格 2.【 点击进入】 【框架平台】springboot 框架 vue.js 前后分离 windows风格 3.【 点击进 ...
分类:编程语言   时间:2021-03-08 13:44:53    阅读次数:0
node.js 解决npm被墙问题
配置到淘宝服务器 npm config set registry https://registry.npm.taobao.org 查看 npm 配置信息 npm config list 只要经过了上面命令的配置,则你以后所有的 `npm install` 都会默认通过淘宝的服务器来下载。 ...
分类:Web程序   时间:2021-03-08 13:31:32    阅读次数:0
LeetCode 3.6-2
https://leetcode-cn.com/problems/delete-duplicate-emails/ 删除重复的电子邮箱 一、答案 DELECT p1 FROM Person p1, Person p2WHERE p1.Email = p2.Email AND p1.Id > p2.I ...
分类:其他好文   时间:2021-03-08 13:08:07    阅读次数:0
第三节:职责链模式——在SpringMVC源码分析
一、职责链模式在 SpringMVC 框架应用的源码分析 1、SpringMVC—HandlerExecutionChain 类就使用到职责链模式 2、SpringMVC 请求流程简图 3、代码分析&说明 代码: 1 public class ResponsibilityChainTest { 2 ...
分类:编程语言   时间:2021-03-06 15:04:20    阅读次数:0
参数里时间格式的转换
https://blog.csdn.net/holdlg/article/details/62436537 time.time() 得到浮点型的时间戳 time.localtime() 都得到 struct_time time.strftime() 可以这么理解 “string format tim ...
分类:其他好文   时间:2021-03-06 14:58:28    阅读次数:0
netcat-flume-logger
flume-netcat-logger.conf 文件编写: # Name the components on this agent a1.sources = r1 a1.sinks = k1 a1.channels = c1 # Describe/configure the source a1.s ...
分类:Web程序   时间:2021-03-06 14:54:47    阅读次数:0
5110条   上一页 1 ... 44 45 46 47 48 ... 511 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!