❶ Ios圖片上傳java怎麼接收!
用file類型接收, 在這看你用的什麼框架 和HTML接收沒有任何去別 !
❷ IOS上傳圖片,將NSData提交給PHP介面
上傳的是圖片,你用文字編輯器打開當然不行!
你想傳給PHP介面,有兩種途徑:
將上傳圖片的路徑傳過去
將圖片的base 64編碼傳過去
❸ 蘋果手機圖片怎麼上傳到電腦
❹ iOS怎麼在後台上傳相冊照片
可以通過XY蘋果助手進行導入 或者 導出 很方便//
❺ 將iphone照片導入ios電腦上嗎
在電腦上下載一個蘋果助手,連接手機,在電腦蘋果助手裡選擇手機上上傳的照片就好了。
❻ ios5 照片流 怎麼上傳到電腦
貌似你直接存進去就可以了,然後打開電腦找到雲空間,照片流就看到了,不用同步!!相當與一個雲存儲,只要登陸帳號就可以進入你的存儲空間,不管那裡登陸都是一樣的!!希望對你有幫助,謝謝
❼ ios用asi怎麼上傳系統相冊照片
1.新建一個single view工程,導入ASIHttpRequest庫,導入MobileCoreServices、CFNetwork、SystemConfiguration和libz1.2.5.dylib四個系統庫
2.隨便導入一張圖片,比如haoyou.png
3.ViewController.h
#import <uikit uikit.h="">
#import "ASIHTTPRequest.h"
#import "ASIFormDataRequest.h"
@interface ViewController : UIViewController
@property (nonatomic, )NSString *m_auth;
@end</asihttprequestdelegate></uikit>
4.ViewController.m 添加兩個按鈕
(void)viewDidLoad {
[super viewDidLoad];
UIButton *loginBtn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
loginBtn.frame = CGRectMake(100, 20, 120, 40);
[loginBtn setTitle:@"登錄" forState:UIControlStateNormal];
[loginBtn addTarget:self action:@selector(login) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:loginBtn];
UIButton *uploadBtn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
uploadBtn.frame = CGRectMake(100, 80, 120, 40);
[uploadBtn setTitle:@"上傳" forState:UIControlStateNormal];
[uploadBtn addTarget:self action:@selector(upload) forControlEvents:UIControlEventTouchUpInside];
[self.view addSubview:uploadBtn];
}
5.實現login和upload兩個方法
- (void)login {
NSURL *url = [NSURL URLWithString:@"..."];//此處省略請求url
//請求
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
request.tag = 10;
request.delegate = self;
[request startAsynchronous];
}
- (void)upload {
NSURL* url = [NSURL URLWithString:@"..."];//此處省略請求url
UIImage* img = [UIImage imageNamed:@"haoyou.png"];
NSData* data = UIImagePNGRepresentation(img);
//ASIFormDataRequest請求是post請求,可以查看其源碼
ASIFormDataRequest* request = [ASIFormDataRequest requestWithURL:url];
request.tag = 20;
request.delegate = self;
[request setPostValue:self.m_auth forKey:@"m_auth"];
// [request setFile:@"tabbar.png" forKey:@"haoyou"];//如果有路徑,上傳文件
[request setData:data withFileName:@"tmp.png" andContentType:@"image/png" forKey:@"headimage"];
// 數據 文件名,隨便起 文件類型 設置key
[request startAsynchronous];
}
6.實現協議
- (void)requestFailed:(ASIHTTPRequest *)request {
NSLog(@"請求失敗");
}
- (void)requestFinished:(ASIHTTPRequest *)request {
if (request.tag == 10) {
NSDictionary * dic = [NSJSONSerialization JSONObjectWithData:request.responseData options:0 error:nil];
self.m_auth = [dic objectForKey:@"m_auth"];
NSLog(@"%@", self.m_auth);
}
if (request.tag == 20) {
NSLog(@"%@", request.responseString);
}
}