重複の可能性:
URL からの画像を blackberry で表示
こんにちは、balckberry の URL から直接画像を読み込もうとしています。balckberry に直接呼び出すオプションはありません。そうするために何かがあります。親切に私を導いてください。
重複の可能性:
URL からの画像を blackberry で表示
こんにちは、balckberry の URL から直接画像を読み込もうとしています。balckberry に直接呼び出すオプションはありません。そうするために何かがあります。親切に私を導いてください。
そのための近道はありません。コードで行う必要があります。
public static InputStream getInputStream(String url)
{
InputStream inputStream = null;
HttpConnection httpConnection = null;
try
{
httpConnection = (HttpConnection)Connector.open(url+connectiontype));
httpConnection.setRequestMethod(HttpConnection.POST);
final int r=httpConnection.getResponseCode();
if(r==200)
inputStream = httpConnection.openDataInputStream();
}
catch(final Exception e)
{
System.out.println("Error is "+e.getMessage());
}
return inputStream;
}
getInputStream()
次のように使用します。
InputStream is=getInputStream(s1);
int length=is.available();
//System.out.print("length ==========="+length);
byte[] data=new byte[length];
data = IOUtilities.streamToBytes(is);
// code to save image in sd card
saveFile.create();
OutputStream outStream = saveFile.openOutputStream();
outStream.write(data);
outStream.close();
saveFile.close();
is.close();
このコードは、URL から画像を保存します。