Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> 客戶端Android和Webservice之間的圖片文件傳輸解決方法

客戶端Android和Webservice之間的圖片文件傳輸解決方法

編輯:關於Android編程

最近在寫webservice接口 給客戶端提供數據和接收客戶端發來的數據。當數據類型為圖片類型的文件時候,先把文件轉為流,然後用Base64編碼成字節流的字符串,傳輸的還是字符串。

客戶端代碼:

 

	
	public static void main(String[] args) throws IOException {
		 File file=new File("d:/272.jpg");
	     FileInputStream fis = new FileInputStream(file);
	     ByteArrayOutputStream baos = new ByteArrayOutputStream();  
	     byte[] buffer = new byte[1024];  
         int count = 0;  
         while((count = fis.read(buffer)) >= 0){  
             baos.write(buffer, 0, count);  
         }  
         String uploadBuffer = new String(Base64.encode(baos.toByteArray()));  //進行Base64編碼  
         fis.close();  
         writeSmilFile(uploadBuffer);
		System.out.println("uploadBuffer:"+uploadBuffer);
	}
	
	//寫到txt
	public static void writeSmilFile(String content) {
		File file1 = new File( "d:/123.txt");
		try {
			file1.createNewFile();
		} catch (IOException e) {
			e.printStackTrace();
		}
		PrintWriter pw;
		try {
			 OutputStreamWriter os = null;
			 os = new OutputStreamWriter(new FileOutputStream(file1),"UTF-8");
			  os.write(content);
		        os.close();
		} catch (IOException e) {
			e.printStackTrace();
		}

	}



服務器端代碼:
	//獲取客戶端傳來的圖片文件 (  客戶端處理是文件轉換為流  Base64編碼成字符串)
	public String getPhotoByAndroid(String photoPath){
		
		//圖片存放路徑 放到正式需要修改
		String newFilePath="D:/";
		
		String newFileName =UUID.randomUUID().toString()+"jpg";
		 	FileOutputStream fos = null;
	        byte[] buffer;
			try {
				buffer = new BASE64Decoder().decodeBuffer(photoPath);
			 
			//對android傳過來的圖片字符串進行解碼   
	        File destDir = new File(newFilePath);    
	        if(!destDir.exists()) destDir.mkdir();  
	        fos = new FileOutputStream(new File(destDir,newFileName));   //保存圖片  
	        fos.write(buffer);  
	        fos.flush();  
	        fos.close(); 
	        } catch (IOException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			} 
	        System.out.println("上傳圖片成功!" + newFilePath+newFileName);   
		return newFileName;
		
	}


 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved