Android头像上传--图片转base64,后台接收到的总是null问题

图片转base64,后台接到为null问题

  1. 项目中,在使用头像上传的时候,将图片转为base64,后台总是收到的base64字符串是null.原以为是图片未压缩,导致图片过大,超过了Tomcat配置的大小,然后后台设置了无限大后,问题仍在。
  2. 后来,发现是压缩的时候的格式的问题。
  img.compress(Bitmap.CompressFormat.PNG, 100, stream);

在手机中使用拍照功能,拍摄的图片是jpeg格式,而网络上下载的图片很多都是png图片。所以导致,jpeg图片通过base64转化的方法导致虽然能转化为base64字符串,但是后台接收到的却是个null.

3.改正后的代码为:

	/**
	 * 将图片转为base64 位
	 *
	 * @param url 图片的地址
	 * @return
	 */
	public static String imgToBase64String(String url) {
		if (url == null) {
			return null;
		}
		Bitmap bitmap = BitmapFactory.decodeFile(url);
		ByteArrayOutputStream stream = new ByteArrayOutputStream();
		if (url.indexOf(".") > 0) {
			if (url.contains(".png")) {
				url = url.substring(0, url.indexOf(".png"));
				bitmap.compress(Bitmap.CompressFormat.PNG, 100, stream);
			} else if (url.contains(".jpg")) {
				url = url.substring(0, url.indexOf(".jpg"));
				bitmap.compress(Bitmap.CompressFormat.JPEG, 100, stream);
			}
		}

		byte[] byteServer = stream.toByteArray();
		try {
			stream.close();
		} catch (IOException e) {
			e.printStackTrace();
		}
		LogUtils.i(TAG, "图片的大小:" + byteServer.length);
		String base64String = Base64.encodeToString(byteServer, 0, byteServer.length, Base64.DEFAULT);
		return base64String;
	}
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值