此链接上存储在云“https://www1.copy.com/home/ganesh.jpg”中的图片..我无法在应用程序中获取图像
public class AndroidLoadImageFromURLActivity 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 = "https://www.copy.com/browse/copy/0017.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);
}
}
答案 0 :(得分:1)
问题:
链接https://www1.copy.com/home/ganesh.jpg会返回图片。 也许你需要登录网站,然后才能获得图像。
解决方案:
尝试获取ImageLoader jar的srouce代码并尝试修改URLConnection并传递凭据以登录该站点。