public static string Str2Hex(string s) { string result = string.Empty; byte[] arrByte = System.Text.Encoding.GetEncoding("GB2312").GetBytes(s); for(in...
分类:
其他好文 时间:
2014-07-24 09:53:33
阅读次数:
304
环境如下:gitlab服务器redhat,客户端环境mac os,如果是其他环境遇到问题仅供参考 如果gitlab上传代码提示: ? ? ? ? error: RPC failed; result=22, HTTP code = 411 该问题是由于客户端设置的http_post...
分类:
其他好文 时间:
2014-07-23 18:13:36
阅读次数:
1583
安装软件:sudo aptitude install ghostscript然后执行命令:gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/screen -sOutputFile=new_fi...
分类:
其他好文 时间:
2014-07-23 15:42:59
阅读次数:
289
#include
char fun(char ch)
{
if(ch>='0'&&ch<='9')
return '9'-(ch-'0');
}
main()
{
char c1,c2;
printf("\nThe result:\n");
c1='2';c2=fun(c1);
printf("c1=%c c2=%c\n",c1,c2);
c1='8';c2=fun(c1);
p...
分类:
其他好文 时间:
2014-07-23 13:29:46
阅读次数:
204
Android中的WiFi P2P能够允许一定范围内的设备通过Wifi直接互连而不必通过热点或互联网。Wi-Fi Alliance's
Wi-Fi Direct?...
分类:
移动开发 时间:
2014-07-23 13:04:46
阅读次数:
308
gen_server:start_link(ServerName, Module, Args, Options) -> Result ServerName={local, Name}|{global, GlobalName}|{via, Module, ViaName} Option = {de.....
分类:
其他好文 时间:
2014-07-23 12:18:56
阅读次数:
221
转自 http://i.cnblogs.com/EditPosts.aspx?opt=1几个小技巧 (1)||的使用:select‘(‘||phone[1,3]||’)’phone[5,12],fromcustomerwherecustomer_num=106;Result:(415)389-878...
分类:
数据库 时间:
2014-07-22 23:03:52
阅读次数:
278
/** * Copyright (C) 2006 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this fi...
分类:
数据库 时间:
2014-07-22 22:45:32
阅读次数:
355
1. jquery设置checkbox时: $(function(){ var result=$("ckAll").attr("checked"); alert(result); //输出值 checked 或者 undefined }); 这个似乎是jquery版本问题. 解决方法: ...
分类:
Web程序 时间:
2014-07-22 22:41:36
阅读次数:
202
1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 8 string A , B; 9 char a[1010];10 char b[1010];11 char result[101...
分类:
其他好文 时间:
2014-07-22 22:32:32
阅读次数:
242