❶ android的.apk文件怎麼上傳到手機
具體方法如下:
1、首先打開電腦上的qq,在首界面找到我的設備。
同時打開手機qq,並連上無線。
❷ Android中使用HttpPost實現數據與文件同時上傳的功能
Part[] parts;
文字
parts[i++] = new StringPart(key, value, HTTP.UTF_8);
附件
// parts[i++] = new FilePart(file.getKey(), file.getValue());
// parts[i++] = new FilePart(file.getKey(),
// file.getValue().getName(),
// file.getValue(), null, HTTP.UTF_8);
parts[i++] = new FilePart(file.getKey(), file.getValue().getName(),file.getValue());
上傳
httpPost.setEntity(new MultipartEntity(parts, httpPost.getParams()));
去下載開源的StringPart FilePart MultipartEntity
❸ 手機和電腦,互傳比較大的文件,那種方式比較好
若使用vivo手機,電腦和手機相互導入文件的方法:
1、互傳網頁版,在手機和電腦連接同一個WiFi的情況下,電腦上打開網址:網頁鏈接,然後通過手機運行「互傳」軟體--傳送文件--網頁傳--掃一掃--掃描網頁端二維碼--連接成功--可通過網頁管理手機文件或應用;
2、通過數據線將手機連接電腦(手機端的彈窗選擇「傳輸照片」或「管理文件」),然後把電腦中的文件復制到手機U盤或將手機中的文件復制到電腦中;
3、在電腦端和手機端同時登錄QQ,將文件通過QQ中我的設備導入手機或電腦。
4、電腦端和手機端同時登錄微信,將文件通過微信的「文件傳輸助手」進行傳輸。
溫馨提示:隱私空間數據不支持導入電腦,可以將需要的數據移出隱私空間後再導入電腦。
更多使用疑惑可進入vivo官網--我的--在線客服--輸入人工,咨詢在線客服反饋。
❹ android上大文件分片上傳 具體怎麼弄
提供一點demo
斷點續傳(改良版)
package com.phone1000.demo09;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.RandomAccessFile;
public class RandomAccessDemo {
public static void main(String[] args) {
// 1.找到文件
File file = new File("E:\\網路雲盤\\網路雲同步盤\\Android開發視頻教程\\[Android開發視頻教程]02_01_spinner的使用.mp4");
File file2 = new File("E:\\我的照片\\[Android開發視頻教程]02_01_spinner的使用.mp4");
//2.創建流
RandomAccessFile is = null;
FileOutputStream os = null;
try {
is = new RandomAccessFile(file,"r");
os = new FileOutputStream(file2,true);
//3.定義一個容器
byte[] b = new byte[1024];
//4.定義一個長度
int len = 0 ;
long oldLength = file.length();
long newLength = 0;
//5.循環讀數
while((len = is.read(b)) != -1){
if(newLength >= oldLength)
{
System.out.println("傳輸完成!");
break;
}
else{
newLength = newLength + len;
is.seek(newLength);
os.write(b);
}
}//釋放資源
os.close();
is.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}
❺ android 怎麼多圖上傳 okhttp
android上傳圖片是先將圖片文件轉換成流文件:可用以下代碼轉換流文件,imgPath為圖片的完整地址
//圖片轉化成base64字元串
public static String imgToBase64(String imgPath) {
InputStream in = null;
byte[] data = null;
//讀取圖片位元組數組
try {
in = new FileInputStream(imgPath);
data = new byte[in.available()];
in.read(data);
in.close();
}
catch (IOException e){
e.printStackTrace();
}
//對位元組數組Base64編碼
sun.misc.BASE64Encoder encoder = new BASE64Encoder();
return encoder.encode(data);//返回Base64編碼過的位元組數組字元串
}
然後圖片文件就成為一串字元串啦,傳遞方法和普通字元串一樣,多圖使用分號隔開即可,後台收到後直接將流文件轉換成圖片保存即可。