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