我上傳的圖片,以服務器爲Base64
編碼方法,它發送一個字符串,我可以從服務器檢索該字符串,並對其進行解碼如何從服務器上傳圖像到Android應用
-3
A
回答
0
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Loading image from url"
android:layout_margin="10dip" />
<ImageView android:id="@+id/image"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_margin="10dip"/>
</LinearLayout>
public class LoadImageFromURLActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// Loader image - will be shown before loading image
int loader = R.drawable.loader;
// Imageview to show
ImageView image = (ImageView) findViewById(R.id.image);
// Image url
String image_url = "http://images4.fanpop.com/image/photos/18900000/Cute-couples-_-love-18948423-500-334.jpg";
// ImageLoader class instance
ImageLoader imgLoader = new ImageLoader(getApplicationContext());
// whenever you want to load an image from url
// call DisplayImage function
// url - image url to load
// loader - loader image, will be displayed before getting image
// image - ImageView
imgLoader.DisplayImage(image_url, loader, image);
}
}
<!-- Internet Permissions -->
<uses-permission android:name="android.permission.INTERNET" />
<!-- Permission to write to external storage -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
0
you have link for that..json parsing ,xml parsing u can get the address and then u can implement that image in ur apps.
+0
是有可能檢索相同的編碼字符串,並得到圖像 –
+0
葉是有可能的 –
+0
http://www.christianbackgrounds.net/free/framed-hands.jpg使用思考認爲你做的圖像上傳..現在你嘗試使用它在你的應用程序...使用Asynctask ... –
相關問題
- 1. Android - 從應用程序上傳圖像到IIS服務器
- 2. 從android應用程序將圖像上傳到服務器
- 3. 如何從Android設備的圖像上傳到Facebook服務器
- 4. android將圖像上傳到服務器
- 5. 從Android上傳圖像到WCF服務
- 6. 如何上傳圖像到服務器
- 7. 將圖像上傳到從服務器
- 8. 從iPhone上傳圖像到服務器
- 9. 如何在Android上將圖像保存/上傳到服務器?
- 10. 從Android上傳圖像到服務器 - 上傳圖像的僅部分
- 11. 從android phonegap上傳圖像到服務器使用asmx
- 12. 使用PaperClip將圖像從Android上傳到Rails服務器
- 13. 使用Base64將圖像從android上傳到服務器
- 14. 是否有任何API從Android應用程序上傳圖像到服務器
- 15. 如何使用PrimeNg從angular2上傳圖像到php服務器?
- 16. 上傳多個圖像從圖庫到服務器在android
- 17. 從Xamarin C上傳圖像從android到php服務器#
- 18. 從Android上傳圖像到php服務器得到錯誤
- 19. 從ios應用程序上傳圖像到服務器
- 20. 從phonegap應用程序上傳圖像到服務器(servlet)
- 21. 從Flex Web應用程序上傳圖像到服務器
- 22. 上傳圖像服務器上傳圖像服務器
- 23. 如何上傳圖像到服務器,而不使用上傳按鈕在android
- 24. 如何從iPhone應用上傳10張圖片到服務器?
- 25. 如何上傳Android設備捕獲圖像到MySQL服務器
- 26. 如何在Android SDK中將圖像上傳到服務器
- 27. 如何將圖像上傳到服務器在android phonegap
- 28. 如何上傳視頻或圖像到服務器在android
- 29. 如何將圖像上傳到Android應用程序中的FTP服務器?
- 30. 從Android上傳圖像到ASP.NET服務器C#
這是完整的代碼使用這個.. –