成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

android上傳圖片,Android上傳圖片在虛擬機上沒問題 實機就不行

android怎樣上傳圖片到服務(wù)器

界面很簡單,點擊 【選擇圖片】,從圖庫里選擇圖片,顯示到下面的imageview里,點擊上傳,就會上傳到指定的服務(wù)器

我們一直強調(diào)網(wǎng)站設(shè)計、成都網(wǎng)站制作對于企業(yè)的重要性,如果您也覺得重要,那么就需要我們慎重對待,選擇一個安全靠譜的網(wǎng)站建設(shè)公司,企業(yè)網(wǎng)站我們建議是要么不做,要么就做好,讓網(wǎng)站能真正成為企業(yè)發(fā)展過程中的有力推手。專業(yè)網(wǎng)站設(shè)計公司不一定是大公司,成都創(chuàng)新互聯(lián)作為專業(yè)的網(wǎng)絡(luò)公司選擇我們就是放心。

布局文件:

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

?xml version="1.0" encoding="utf-8"?

LinearLayout xmlns:android=""

android:orientation="vertical"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

Button

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:text="選擇圖片"

android:id="@+id/selectImage"

/

Button

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:text="上傳圖片"

android:id="@+id/uploadImage"

/

ImageView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:id="@+id/imageView"

/

/LinearLayout

Upload Activity:

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

public class Upload extends Activity implements OnClickListener {

private static String requestURL = "";

private Button selectImage, uploadImage;

private ImageView imageView;

private String picPath = null;

/** Called when the activity is first created. */

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.upload);

selectImage = (Button) this.findViewById(R.id.selectImage);

uploadImage = (Button) this.findViewById(R.id.uploadImage);

selectImage.setOnClickListener(this);

uploadImage.setOnClickListener(this);

imageView = (ImageView) this.findViewById(R.id.imageView);

}

@Override

public void onClick(View v) {

switch (v.getId()) {

case R.id.selectImage:

/***

* 這個是調(diào)用android內(nèi)置的intent,來過濾圖片文件 ,同時也可以過濾其他的

*/

Intent intent = new Intent();

intent.setType("image/*");

intent.setAction(Intent.ACTION_GET_CONTENT);

startActivityForResult(intent, 1);

break;

case R.id.uploadImage:

if (picPath == null) {

Toast.makeText(Upload.this, "請選擇圖片!", 1000).show();

} else {

final File file = new File(picPath);

if (file != null) {

String request = UploadUtil.uploadFile(file, requestURL);

uploadImage.setText(request);

}

}

break;

default:

break;

}

}

@Override

protected void onActivityResult(int requestCode, int resultCode, Intent data) {

if (resultCode == Activity.RESULT_OK) {

/**

* 當(dāng)選擇的圖片不為空的話,在獲取到圖片的途徑

*/

Uri uri = data.getData();

Log.e(TAG, "uri = " + uri);

try {

String[] pojo = { MediaStore.Images.Media.DATA };

Cursor cursor = managedQuery(uri, pojo, null, null, null);

if (cursor != null) {

ContentResolver cr = this.getContentResolver();

int colunm_index = cursor

.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);

cursor.moveToFirst();

String path = cursor.getString(colunm_index);

/***

* 這里加這樣一個判斷主要是為了第三方的軟件選擇,比如:使用第三方的文件管理器的話,你選擇的文件就不一定是圖片了,

* 這樣的話,我們判斷文件的后綴名 如果是圖片格式的話,那么才可以

*/

if (path.endsWith("jpg") || path.endsWith("png")) {

picPath = path;

Bitmap bitmap = BitmapFactory.decodeStream(cr

.openInputStream(uri));

imageView.setImageBitmap(bitmap);

} else {

alert();

}

} else {

alert();

}

} catch (Exception e) {

}

}

super.onActivityResult(requestCode, resultCode, data);

}

private void alert() {

Dialog dialog = new AlertDialog.Builder(this).setTitle("提示")

.setMessage("您選擇的不是有效的圖片")

.setPositiveButton("確定", new DialogInterface.OnClickListener() {

public void onClick(DialogInterface dialog, int which) {

picPath = null;

}

}).create();

dialog.show();

}

}

這個才是重點 UploadUtil:

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

public class UploadUtil {

private static final String TAG = "uploadFile";

private static final int TIME_OUT = 10 * 1000; // 超時時間

private static final String CHARSET = "utf-8"; // 設(shè)置編碼

/**

* 上傳文件到服務(wù)器

* @param file 需要上傳的文件

* @param RequestURL 請求的rul

* @return 返回響應(yīng)的內(nèi)容

*/

public static int uploadFile(File file, String RequestURL) {

int res=0;

String result = null;

String BOUNDARY = UUID.randomUUID().toString(); // 邊界標識 隨機生成

String PREFIX = "--", LINE_END = "\r\n";

String CONTENT_TYPE = "multipart/form-data"; // 內(nèi)容類型

try {

URL url = new URL(RequestURL);

HttpURLConnection conn = (HttpURLConnection) url.openConnection();

conn.setReadTimeout(TIME_OUT);

conn.setConnectTimeout(TIME_OUT);

conn.setDoInput(true); // 允許輸入流

conn.setDoOutput(true); // 允許輸出流

conn.setUseCaches(false); // 不允許使用緩存

conn.setRequestMethod("POST"); // 請求方式

conn.setRequestProperty("Charset", CHARSET); // 設(shè)置編碼

conn.setRequestProperty("connection", "keep-alive");

conn.setRequestProperty("Content-Type", CONTENT_TYPE + ";boundary="+ BOUNDARY);

if (file != null) {

/**

* 當(dāng)文件不為空時執(zhí)行上傳

*/

DataOutputStream dos = new DataOutputStream(conn.getOutputStream());

StringBuffer sb = new StringBuffer();

sb.append(PREFIX);

sb.append(BOUNDARY);

sb.append(LINE_END);

/**

* 這里重點注意: name里面的值為服務(wù)器端需要key 只有這個key 才可以得到對應(yīng)的文件

* filename是文件的名字,包含后綴名

*/

sb.append("Content-Disposition: form-data; name=\"file\"; filename=\""

+ file.getName() + "\"" + LINE_END);

sb.append("Content-Type: application/octet-stream; charset="

+ CHARSET + LINE_END);

sb.append(LINE_END);

dos.write(sb.toString().getBytes());

InputStream is = new FileInputStream(file);

byte[] bytes = new byte[1024];

int len = 0;

while ((len = is.read(bytes)) != -1) {

dos.write(bytes, 0, len);

}

is.close();

dos.write(LINE_END.getBytes());

byte[] end_data = (PREFIX + BOUNDARY + PREFIX + LINE_END)

.getBytes();

dos.write(end_data);

dos.flush();

/**

* 獲取響應(yīng)碼 200=成功 當(dāng)響應(yīng)成功,獲取響應(yīng)的流

*/

res = conn.getResponseCode();

Log.e(TAG, "response code:" + res);

if (res == 200) {

Log.e(TAG, "request success");

InputStream input = conn.getInputStream();

StringBuffer sb1 = new StringBuffer();

int ss;

while ((ss = input.read()) != -1) {

sb1.append((char) ss);

}

result = sb1.toString();

Log.e(TAG, "result : " + result);

} else {

Log.e(TAG, "request error");

}

}

} catch (MalformedURLException e) {

e.printStackTrace();

} catch (IOException e) {

e.printStackTrace();

}

return res;

}

}

Android圖片批量上傳的功能。(圖片比較大)

Android中上傳圖片或者下載圖片,使用最多的是xUtils和imageloader、glide,選用這兩種的哪一種框架都行,因為是批量和圖片大容易造成界面卡以及上傳速度慢,對圖片操作不當(dāng)就容易造成OOM異常,一般對于批量上傳大圖片都需要對圖片也處理,然后在上傳第一步需要對圖片進行比例壓縮之后再進行質(zhì)量壓縮,處理之后的圖片比之前的圖片會小很多,再加上框架的上傳處理,會有很好的效果,希望對你有所幫助

android中如何上傳圖片到FTP服務(wù)器

android客戶端實現(xiàn)FTP文件需要用到 commons-net-3.0.1.jar

先將jar包復(fù)制到android libs目錄下

復(fù)制以下實現(xiàn)代碼

以下為實現(xiàn)代碼:

/**

* 通過ftp上傳文件

* @param url ftp服務(wù)器地址 如:

* @param port 端口如 :

* @param username 登錄名

* @param password 密碼

* @param remotePath 上到ftp服務(wù)器的磁盤路徑

* @param fileNamePath 要上傳的文件路徑

* @param fileName 要上傳的文件名

* @return

*/

public String ftpUpload(String url, String port, String username,String password, String remotePath, String fileNamePath,String fileName) {

FTPClient ftpClient = new FTPClient();

FileInputStream fis = null;

String returnMessage = "0";

try {

ftpClient.connect(url, Integer.parseInt(port));

boolean loginResult = ftpClient.login(username, password);

int returnCode = ftpClient.getReplyCode();

if (loginResult FTPReply.isPositiveCompletion(returnCode)) {// 如果登錄成功

ftpClient.makeDirectory(remotePath);

// 設(shè)置上傳目錄

ftpClient.changeWorkingDirectory(remotePath);

ftpClient.setBufferSize(1024);

ftpClient.setControlEncoding("UTF-8");

ftpClient.enterLocalPassiveMode();

fis = new FileInputStream(fileNamePath + fileName);

ftpClient.storeFile(fileName, fis);

returnMessage = "1"; //上傳成功

} else {// 如果登錄失敗

returnMessage = "0";

}

} catch (IOException e) {

e.printStackTrace();

throw new RuntimeException("FTP客戶端出錯!", e);

} finally {

//IOUtils.closeQuietly(fis);

try {

ftpClient.disconnect();

} catch (IOException e) {

e.printStackTrace();

throw new RuntimeException("關(guān)閉FTP連接發(fā)生異常!", e);

}

}

return returnMessage;

}

Android 上傳圖片到服務(wù)器

;

這個是服務(wù)器地址,你圖片要上傳的地方。。

理論上是需要一個服務(wù)器接收你上傳的圖片的!

他這個demo中的url是本地的,目測是寫demo的人自己寫的用來測試的地址

android 客戶端開發(fā) 如何同時上傳多張照片

1、在微博頁面點擊左上角發(fā)布按鈕后,點擊“照相機”標識或“圖片”標識;

2、選擇圖片進行上傳,選定后點擊右下角的綠色“確認”按鈕

3、多圖上傳最多支持9張圖片,如果還需添加可點擊“十”字繼續(xù)選擇上傳,如果添加完畢可點擊右上角的藍色“發(fā)布”即可。

android如何實現(xiàn)圖片批量上傳??

首先,以下架構(gòu)下的批量文件上傳可能會失敗或者不會成功:

1.android客戶端+springMVC服務(wù)端:服務(wù)端采用org.springframework.web.multipart.MultipartHttpServletRequest作為批量上傳接收類,這種搭配下的批量文件上傳會失敗,最終服務(wù)端只會接受到一個文件,即只會接受到第一個文件??赡芤驗镸ultipartHttpServletRequest對servlet原本的HttpServletRequest類進行封裝,導(dǎo)致批量上傳有問題。

2.android客戶端+strutsMVC服務(wù)端:

上傳成功的方案:

采用android客戶端+Servlet(HttpServletRequest)進行文件上傳。

Servlet端代碼如下:

[java] view plaincopyprint?

DiskFileItemFactory factory = new DiskFileItemFactory();

ServletFileUpload upload = new ServletFileUpload(factory);

try

{

List items = upload.parseRequest(request);

Iterator itr = items.iterator();

while (itr.hasNext())

{

FileItem item = (FileItem) itr.next();

if (item.isFormField())

{

System.out.println("表單參數(shù)名:" + item.getFieldName() + ",表單參數(shù)值:" + item.getString("UTF-8"));

}

else

{

if (item.getName() != null !item.getName().equals(""))

{

System.out.println("上傳文件的大小:" + item.getSize());

System.out.println("上傳文件的類型:" + item.getContentType());

// item.getName()返回上傳文件在客戶端的完整路徑名稱

System.out.println("上傳文件的名稱:" + item.getName());

File tempFile = new File(item.getName());

// 上傳文件的保存路徑

File file = new File(sc.getRealPath("/") + savePath, tempFile.getName());

item.write(file);

request.setAttribute("upload.message", "上傳文件成功!");

} else

{

request.setAttribute("upload.message", "沒有選擇上傳文件!");

}

}

}

}

catch (FileUploadException e)

{

e.printStackTrace();

}

catch (Exception e)

{

e.printStackTrace();

request.setAttribute("upload.message", "上傳文件失敗!");

}

request.getRequestDispatcher("/uploadResult.jsp").forward(request, response);

android端代碼如下:

[java] view plaincopyprint?

public class SocketHttpRequester {

/**

*多文件上傳

* 直接通過HTTP協(xié)議提交數(shù)據(jù)到服務(wù)器,實現(xiàn)如下面表單提交功能:

* FORM METHOD=POST ACTION="" enctype="multipart/form-data"

INPUT TYPE="text" NAME="name"

INPUT TYPE="text" NAME="id"

input type="file" name="imagefile"/

input type="file" name="zip"/

/FORM

* @param path 上傳路徑(注:避免使用localhost或127.0.0.1這樣的路徑測試,因為它會指向手機模擬器,你可以使用或這樣的路徑測試)

* @param params 請求參數(shù) key為參數(shù)名,value為參數(shù)值

* @param file 上傳文件

*/

public static boolean post(String path, MapString, String params, FormFile[] files) throws Exception{

final String BOUNDARY = "---------------------------7da2137580612"; //數(shù)據(jù)分隔線

final String endline = "--" + BOUNDARY + "--\r\n";//數(shù)據(jù)結(jié)束標志

int fileDataLength = 0;

for(FormFile uploadFile : files){//得到文件類型數(shù)據(jù)的總長度

StringBuilder fileExplain = new StringBuilder();

fileExplain.append("--");

fileExplain.append(BOUNDARY);

fileExplain.append("\r\n");

fileExplain.append("Content-Disposition: form-data;name=\""+ uploadFile.getParameterName()+"\";filename=\""+ uploadFile.getFilname() + "\"\r\n");

fileExplain.append("Content-Type: "+ uploadFile.getContentType()+"\r\n\r\n");

fileExplain.append("\r\n");

fileDataLength += fileExplain.length();

if(uploadFile.getInStream()!=null){

fileDataLength += uploadFile.getFile().length();

}else{

fileDataLength += uploadFile.getData().length;

}

}

StringBuilder textEntity = new StringBuilder();

for (Map.EntryString, String entry : params.entrySet()) {//構(gòu)造文本類型參數(shù)的實體數(shù)據(jù)

textEntity.append("--");

textEntity.append(BOUNDARY);

textEntity.append("\r\n");

textEntity.append("Content-Disposition: form-data; name=\""+ entry.getKey() + "\"\r\n\r\n");

textEntity.append(entry.getValue());

textEntity.append("\r\n");

}

//計算傳輸給服務(wù)器的實體數(shù)據(jù)總長度

int dataLength = textEntity.toString().getBytes().length + fileDataLength + endline.getBytes().length;

URL url = new URL(path);

int port = url.getPort()==-1 ? 80 : url.getPort();

Socket socket = new Socket(InetAddress.getByName(url.getHost()), port);

OutputStream outStream = socket.getOutputStream();

//下面完成HTTP請求頭的發(fā)送

String requestmethod = "POST "+ url.getPath()+" HTTP/1.1\r\n";

outStream.write(requestmethod.getBytes());

String accept = "Accept: image/gif, image/jpeg, image/pjpeg, image/pjpeg, application/x-shockwave-flash, application/xaml+xml, application/vnd.ms-xpsdocument, application/x-ms-xbap, application/x-ms-application, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, */*\r\n";

outStream.write(accept.getBytes());

String language = "Accept-Language: zh-CN\r\n";

outStream.write(language.getBytes());

String contenttype = "Content-Type: multipart/form-data; boundary="+ BOUNDARY+ "\r\n";

outStream.write(contenttype.getBytes());

String contentlength = "Content-Length: "+ dataLength + "\r\n";

outStream.write(contentlength.getBytes());

String alive = "Connection: Keep-Alive\r\n";

outStream.write(alive.getBytes());

String host = "Host: "+ url.getHost() +":"+ port +"\r\n";

outStream.write(host.getBytes());

//寫完HTTP請求頭后根據(jù)HTTP協(xié)議再寫一個回車換行

outStream.write("\r\n".getBytes());

//把所有文本類型的實體數(shù)據(jù)發(fā)送出來

outStream.write(textEntity.toString().getBytes());

//把所有文件類型的實體數(shù)據(jù)發(fā)送出來

for(FormFile uploadFile : files){

StringBuilder fileEntity = new StringBuilder();

fileEntity.append("--");

fileEntity.append(BOUNDARY);

fileEntity.append("\r\n");

fileEntity.append("Content-Disposition: form-data;name=\""+ uploadFile.getParameterName()+"\";filename=\""+ uploadFile.getFilname() + "\"\r\n");

fileEntity.append("Content-Type: "+ uploadFile.getContentType()+"\r\n\r\n");

outStream.write(fileEntity.toString().getBytes());

if(uploadFile.getInStream()!=null){

byte[] buffer = new byte[1024];

int len = 0;

while((len = uploadFile.getInStream().read(buffer, 0, 1024))!=-1){

outStream.write(buffer, 0, len);

}

uploadFile.getInStream().close();

}else{

outStream.write(uploadFile.getData(), 0, uploadFile.getData().length);

}

outStream.write("\r\n".getBytes());

}

//下面發(fā)送數(shù)據(jù)結(jié)束標志,表示數(shù)據(jù)已經(jīng)結(jié)束

outStream.write(endline.getBytes());

BufferedReader reader = new BufferedReader(new InputStreamReader(socket.getInputStream()));

if(reader.readLine().indexOf("200")==-1){//讀取web服務(wù)器返回的數(shù)據(jù),判斷請求碼是否為200,如果不是200,代表請求失敗

return false;

}

outStream.flush();

outStream.close();

reader.close();

socket.close();

return true;

}

/**

*單文件上傳

* 提交數(shù)據(jù)到服務(wù)器

* @param path 上傳路徑(注:避免使用localhost或127.0.0.1這樣的路徑測試,因為它會指向手機模擬器,你可以使用或這樣的路徑測試)

* @param params 請求參數(shù) key為參數(shù)名,value為參數(shù)值

* @param file 上傳文件

*/

public static boolean post(String path, MapString, String params, FormFile file) throws Exception{

return post(path, params, new FormFile[]{file});

}

}

網(wǎng)頁名稱:android上傳圖片,Android上傳圖片在虛擬機上沒問題 實機就不行
文章網(wǎng)址:http://jinyejixie.com/article6/dssehig.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供軟件開發(fā)、ChatGPT、品牌網(wǎng)站設(shè)計服務(wù)器托管、響應(yīng)式網(wǎng)站、網(wǎng)站設(shè)計

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設(shè)公司
库伦旗| 信宜市| 平舆县| 伊春市| 金平| 松阳县| 绵竹市| 宁安市| 曲阜市| 庄浪县| 阿图什市| 龙游县| 陈巴尔虎旗| 格尔木市| 安福县| 冕宁县| 汨罗市| 高唐县| 福州市| 高陵县| 厦门市| 榆社县| 聂拉木县| 成武县| 靖边县| 桐庐县| 栾城县| 台山市| 雅安市| 兴安盟| 鹰潭市| 射洪县| 临泽县| 额敏县| 邢台市| 罗源县| 瑞金市| 闽清县| 五原县| 哈巴河县| 谢通门县|