本月博客排行
-
第1名
龙儿筝 -
第2名
flashsing123 -
第3名
xiaoxinye - e_e
- java_doom
- johnsmith9th
- gaochunhu
- sichunli_030
- zw7534313
- 深蓝传说
年度博客排行
-
第1名
宏天软件 -
第2名
龙儿筝 -
第3名
青否云后端云 - wallimn
- vipbooks
- gashero
- wy_19921005
- benladeng5225
- fantaxy025025
- zysnba
- e_e
- javashop
- sam123456gz
- tanling8334
- arpenker
- kaizi1992
- xpenxpen
- lemonhandsome
- xiangjie88
- ganxueyun
- xyuma
- sichunli_030
- wangchen.ily
- jh108020
- Xeden
- johnsmith9th
- zxq_2017
- zhanjia
- jbosscn
- forestqqqq
- luxurioust
- lzyfn123
- ajinn
- daizj
- wjianwei666
- ranbuijj
- 喧嚣求静
- silverend
- kingwell.leng
- lchb139128
- kristy_yy
- lich0079
- jveqi
- java-007
- sunj
- yeluowuhen
- lerf
- lstcyzj
- flashsing123
- lxguy
最新文章列表
我程序中用到的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 ...