/**

* 保存圖片到SD卡(如果有SD卡的話)
* @param mId
*/
private void saveMerchandiseImgToSD(int mId,String imageName)
{
FileOutputStream fos = null;
Bitmap b = PublicMethod.getMerchandiseImage(mId);
try {
fos = new FileOutputStream("/sdcard/Discount/" + imageName + ".jpg");
if (fos != null) {
b.compress(Bitmap.CompressFormat.JPEG, 90, fos);
fos.close();
}
} catch (Exception e) {
e.printStackTrace();
}
}
arrow
arrow
    全站熱搜

    戮克 發表在 痞客邦 留言(0) 人氣()