image - 从图像 URL 加载图像需要很长时间才能显示

标签 image url blackberry java-me image-uploading

我使用了以下链接中的代码:Signare's Blog .我有 10 个图像 URL,想检索它们并将它们显示在我的屏幕上。当我使用上面链接中的代码时,加载所有图像需要 10 多分钟。如何加快加载速度?

URLBitmapField post_img= new URLBitmapField(image_url);
add(post_img);

所在类(class)URLBitmapField定义为:
import net.rim.device.api.math.Fixed32;
import net.rim.device.api.system.Bitmap;
import net.rim.device.api.system.EncodedImage;
import net.rim.device.api.ui.UiApplication;
import net.rim.device.api.ui.component.BitmapField;

public class URLBitmapField extends BitmapField implements URLDataCallback {
    EncodedImage result = null;
    public static EncodedImage _encoded_img = null;
    int _imgWidth = 52;
    int _imgHeight = 62;
    int _imgMargin = 10;

    public URLBitmapField(String url) {
        try {
            http_image_data_extrator.getWebData(url, this);
        }
        catch (Exception e) {}
    }

    public Bitmap getBitmap() {
        if (_encoded_img == null) return null;
        return _encoded_img.getBitmap();
    }

    public void callback(final String data) {
        if (data.startsWith("Exception")) return;
        try {
            byte[] dataArray = data.getBytes();
            _encoded_img = EncodedImage.createEncodedImage(dataArray, 0, dataArray.length); // with scale
            _encoded_img = sizeImage(_encoded_img, _imgWidth, _imgHeight);
            setImage(_encoded_img);
            UiApplication.getUiApplication().getActiveScreen().invalidate();
        }
        catch (final Exception e){}
    }

    public EncodedImage sizeImage(EncodedImage image, int width, int height) {
        int currentWidthFixed32 = Fixed32.toFP(image.getWidth());
        int currentHeightFixed32 = Fixed32.toFP(image.getHeight());
        int requiredWidthFixed32 = Fixed32.toFP(width);
        int requiredHeightFixed32 = Fixed32.toFP(height);
        int scaleXFixed32 = Fixed32.div(currentWidthFixed32,requiredWidthFixed32);
        int scaleYFixed32 = Fixed32.div(currentHeightFixed32,requiredHeightFixed32);
        result = image.scaleImage32(scaleXFixed32, scaleYFixed32);
        return result;
    }
}

public interface URLDataCallback {
    public void callback(String data);
}

和类(class) http_image_data_extrator定义为:
import java.io.IOException;
import java.io.InputStream;
import javax.microedition.io.Connector;
import javax.microedition.io.HttpConnection;
import net.rim.device.api.system.RadioInfo;
import net.rim.device.api.system.WLANInfo;
import net.rim.device.api.ui.UiApplication;

public class http_image_data_extrator {
    static String url_="";
    static StringBuffer rawResponse=null;

    public static void getWebData(String url, final URLDataCallback callback) throws IOException {
        HttpConnection connection = null;
        InputStream inputStream = null;
        try {
            if ((WLANInfo.getWLANState() == WLANInfo.WLAN_STATE_CONNECTED)&& RadioInfo.areWAFsSupported(RadioInfo.WAF_WLAN)) {
                url += ";interface=wifi";
            }
            connection = (HttpConnection) Connector.open(url, Connector.READ, true);
            String location=connection.getHeaderField("location");
            if(location!=null){
                if ((WLANInfo.getWLANState() == WLANInfo.WLAN_STATE_CONNECTED)&& RadioInfo.areWAFsSupported(RadioInfo.WAF_WLAN)) {
                    location += ";interface=wifi";
                }
                connection = (HttpConnection) Connector.open(location, Connector.READ, true);
            }else{
                connection = (HttpConnection) Connector.open(url, Connector.READ, true);
            }

            inputStream = connection.openInputStream();
            byte[] responseData = new byte[10000];
            int length = 0;
            rawResponse = new StringBuffer();
            while (-1 != (length = inputStream.read(responseData))) {
                rawResponse.append(new String(responseData, 0, length));
            }
            int responseCode = connection.getResponseCode();
            if (responseCode != HttpConnection.HTTP_OK){
                throw new IOException("HTTP response code: "+ responseCode);
            }

            final String  result = rawResponse.toString();
            UiApplication.getUiApplication().invokeLater(new Runnable() {
                public void run(){
                    callback.callback(result);
                }
            });
        }
        catch (final Exception ex) {
            UiApplication.getUiApplication().invokeLater(new Runnable() {
                public void run() {
                    callback.callback("Exception (" + ex.getClass() + "): " + ex.getMessage());
                }
            });
        }
    }
}  

最佳答案

在服务器上调整大小

调整服务器上的图像大小是最好的答案。因为下载大图像并缩小它们需要设备上的很多东西(网络、内存、cpu)。

通过代理调整大小

如果图像服务器不在您的控制之下,您仍然可以使用自己的服务器作为调整大小的代理(将图像 url 和所需大小发送到您的服务器,它获取图像、调整大小并返回调整大小的图像)。也许已经有一项服务可以做到这一点。

更便宜的解码选项

一些解码选项可能会使解码(和调整大小)更便宜。 DECODE_NO_DITHER、DECODE_READONLY 和 DECODE_NATIVE 似乎都值得一试。
http://www.blackberry.com/developers/docs/4.2api/net/rim/device/api/system/EncodedImage.html#DECODE_NO_DITHER

串行而不是并行

你提到你正在加载 10 张图片。如果 10 张图像所用的时间是 1 张图像所用时间的 10 倍以上,则系统可能会“颠簸”。就像它可能会发起所有 10 个请求,然后在回调中同时处理内存中的 10 个全尺寸图像。可以在开始下载下一张图片之前尝试显示第一张图片,这也让用户可以更快地看到一些东西。同样,并行调用 invalidate 10 次(在回调中)可能会导致打嗝。

关于image - 从图像 URL 加载图像需要很长时间才能显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13244842/

相关文章:

Java HTTP 请求失败

在模拟器上加载黑莓应用程序

blackberry - 有人知道用于基于 blackberry java 的开发的 LinkedIn api 吗?

javascript - 根据具有自定义值属性的选择选项显示图像

java - 如何在java中检查给定的域名http或https?

javascript/jquery 获取没有哈希的 URL

blackberry - 启动 Foo 时出错 : Class 'net.rim.device.api.system.WLANListener' not found

c# - 通过TCP套接字将图像从C#服务器发送到Java客户端

java - 如何将图库图像作为输入流

image - svg 剪辑图像并显示描边