1. 定义一个全局的AFHttpClient:包含有 1> baseURL 2> 请求 3> 操作队列 NSOperationQueue 2. 由AFHTTPRequestOperation负责所有的“网络”操作请求完整demo:文件上传关键代码: 1 - (IBAction)upload { 2 ...
分类:
其他好文 时间:
2014-07-20 22:33:56
阅读次数:
476
1. 修改linux系统编码为UTF8[root@sx upload]# vi /etc/sysconfig/i18n LANG="en_US.UTF-8"SYSFONT="latarcyrheb-sun16"修改LANG为UTF-8。2. 接着修改CRT的编码为选择外观 、字体 为标准字体 新宋体...
分类:
其他好文 时间:
2014-07-19 17:12:57
阅读次数:
211
1、RemoteSolrException: Expected mime type application/octet-stream but got text/html
现象:
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) log...
分类:
其他好文 时间:
2014-07-19 12:07:08
阅读次数:
267
Insert title here
$(function(){
//点击打开文件选择器
$("#upload").on('click', function() {
$('#fileTo...
分类:
其他好文 时间:
2014-07-19 02:26:46
阅读次数:
222
@{ ViewBag.Title = "Home Page";} 上传 取消上传 public string Upload(FormContext from) { var file ...
分类:
Web程序 时间:
2014-07-18 18:18:34
阅读次数:
225
compatible:chromefirefoxie 11 , not supporteddemo:http://demo.tutorialzine.com/2011/09/html5-file-upload-jquery-php/http://www.sitepoint.com/author/cr...
分类:
Web程序 时间:
2014-07-18 16:26:54
阅读次数:
278
本文介绍基于rfc4648的Base64编码格式,rfc4648介绍了Base64/32/16编码机制,同时废止了rfc3548。相关的资料和标准有:rfc2045定义了MIME中的Base64传输编码,rfc4880定义了OpenPGP中使用的Radix-64编码。 Base64使用64个通...
分类:
其他好文 时间:
2014-07-18 15:32:41
阅读次数:
222
本文介绍Radix-64编码,PGP和S/MIME均使用了Radix-64编码技术,rfc4880的Chap 6有关于Radix-64的详细描述。 Radix-64编码基于Base64编码技术,由两部分构成。分别是Base64编码的二进制数据和一个校验和。这里使用的Base64编码格式与rfc...
分类:
其他好文 时间:
2014-07-18 14:36:38
阅读次数:
213
简介JAX-RS是一套用java实现REST服务的规范,提供了一些标注将一个资源类,一个POJOJava类,封装为Web资源。标注包括:@Path,标注资源类或方法的相对路径@GET,@PUT,@POST,@DELETE,标注方法是用的HTTP请求的类型@Produces,标注返回的MIME媒体类型...
分类:
其他好文 时间:
2014-07-18 10:35:06
阅读次数:
227
package main
import (
"html/template"
"io"
"io/ioutil"
"log"
"net/http"
"os"
"path"
"runtime/debug"
)
const (
ListDir = 0x0001
UPLOAD_DIR = "./uploads"
TEMPLATE_DIR = "./v...