题目描述: Joe works in a maze. Unfortunately, portions of the maze have caught on fire, and the owner of the maze neglected to create a fire escape plan. ...
分类:
其他好文 时间:
2019-02-10 20:43:44
阅读次数:
173
题目链接:http://123.206.87.240:8002/web4/ 题解: 打开题目,看到一个登陆框 提示我们查看源代码,那就看看呗,于是打开源代码 将其提取出来,原来是一个php代码 不知道unescape()和escape()的意思,百度了下,原来是一种加密解密函数,因此,将变量p1带入 ...
分类:
Web程序 时间:
2019-02-10 12:25:48
阅读次数:
339
A. King Escape 签. 1 #include <bits/stdc++.h> 2 using namespace std; 3 4 int n, x[3], y[3]; 5 6 int f1(int X, int Y) 7 { 8 return X - Y - x[2] + y[2]; ...
分类:
其他好文 时间:
2019-02-09 10:42:12
阅读次数:
189
1 """ 2 This script illustrate the usage of escape symbol %%. In general, it is used in mutil-formatted string. when a string is 3 formatted , %% can ... ...
分类:
其他好文 时间:
2019-02-07 15:05:41
阅读次数:
196
CSU "1908" The Big Escape Description There is a tree like prison. Expect the root node, each node has a prisoner, and the root node is the only exit. ...
分类:
其他好文 时间:
2019-02-04 12:49:43
阅读次数:
160
[root@elk3 ~]# telnet 192.168.122.135 22 Trying 192.168.122.135... 这意味着telnet 没有收到任何回应来建立连接。有两个可能的原因: 1 你和服务器之间有个路由器宕掉了。 2 防火墙拦截了你的请求。 为了排除第1 点,对服务器上进 ...
分类:
Web程序 时间:
2019-02-03 12:28:17
阅读次数:
195
1.使用 ESCAPE 关键字定义转义符。在模式中,当转义符置于通配符之前时,该通配符就解释为普通字符。例如,要搜索在任意位置包含字符串 5% 的字符串,请使用: WHERE ColumnA LIKE '%5/%%' ESCAPE '/' 即‘/’为转义字符,第二个‘%’为普通字符,第一、第三个为通 ...
分类:
数据库 时间:
2019-01-30 22:15:52
阅读次数:
583
前言 本文用于记录整个demo学习、开发的过程 一、key point 1.使用主流框架:mvp+kotlin+rxjava2+room+retrofit2 2.简结的ui/ux 3.第三方api的使用 https://www.sojson.com/blog/305.html 4.定期自动更新天气数 ...
分类:
移动开发 时间:
2019-01-30 14:17:19
阅读次数:
241
escape不编码字符有69个:*,+,-,.,/,@,_,0-9,a-z,A-Z encodeURI不编码字符有82个:!,#,$,&,',(,),*,+,,,-,.,/,:,;,=,?,@,_,~,0-9,a-z,A-Z encodeURIComponent不编码字符有71个:!, ',(,), ...
分类:
其他好文 时间:
2019-01-30 00:20:55
阅读次数:
148
在使用URLDecoder对字符串进行解码的时候 报以下异常信息: Exception in thread "main" java.lang.IllegalArgumentException: URLDecoder: Incomplete trailing escape (%) pattern 原因 ...
分类:
Web程序 时间:
2019-01-29 18:05:27
阅读次数:
169