本月博客排行
-
第1名
Xeden -
第2名
fantaxy025025 -
第3名
bosschen - paulwong
- johnsmith9th
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - gengyun12
- wy_19921005
- vipbooks
- e_e
- benladeng5225
- wallimn
- ranbuijj
- javashop
- jickcai
- fantaxy025025
- zw7534313
- qepwqnp
- robotmen
- 解宜然
- ssydxa219
- sam123456gz
- zysnba
- sichunli_030
- tanling8334
- arpenker
- gaojingsong
- xpenxpen
- kaizi1992
- wiseboyloves
- jh108020
- xyuma
- ganxueyun
- wangchen.ily
- xiangjie88
- Jameslyy
- luxurioust
- mengjichen
- lemonhandsome
- jbosscn
- nychen2000
- zxq_2017
- lzyfn123
- wjianwei666
- forestqqqq
- ajinn
- siemens800
- hanbaohong
- 狂盗一枝梅
- java-007
- zhanjia
- 喧嚣求静
- Xeden
最新文章列表
我程序中用到的urldecode和base64decode,MD5
这里是base64decode和urldecode,Md5在附件中。因为我是在后台所以需要解码:
string Base64Decode(const char* Data,int DataByte,int& OutByte)
{
//解码表
const char DecodeTable[] =
{
0, 0, 0, 0, 0, 0, 0, ...
c的urldecode
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void encodeurl(){
int c;
char *hex = "0123456789abcdef";
while( (c = getchar()) != EOF ){
...
extjs源码分析-009(Ext.urlDecode/urlEncode)
//把json格式转化成url的编码方式
// e.g. Ext.urlEncode({foo: 1, bar: 2}); would return "foo=1&bar=2"
urlEncode: function(o, pre){//o为json对象,pre为前缀
var undef, buf = [], key, e = encod ...
URL中的特殊字符问题
js对文字进行编码涉及3个函数:escape,encodeURI,encodeURIComponent ,相应3个解码函数:unescape,decodeURI,decodeURIComponent1、 传递参数时需要使用 encodeURIComponent,这样组合的url才不会被#等特殊字符截断。 例如:<script lan ...