-6
我想從我的android字符串的形式,但我沒有找到任何相關的主題,我的畫廊圖像上傳到localhost數據庫。請指引我如何從android中以字符串的形式上傳圖片到localhost數據庫中?不只路徑圖像
我想從我的android字符串的形式,但我沒有找到任何相關的主題,我的畫廊圖像上傳到localhost數據庫。請指引我如何從android中以字符串的形式上傳圖片到localhost數據庫中?不只路徑圖像
你可以通過這個代碼轉換成你的位圖圖像爲base64字符串:`
`ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.PNG, 100, byteArrayOutputStream);
byte[] byteArray = byteArrayOutputStream .toByteArray();
String encoded = Base64.encodeToString(byteArray, Base64.DEFAULT);
您好,歡迎StackOverflow上。請參考https://stackoverflow.com/help/how-to-ask如何提出一個適當的問題,並根據準則提高你的。 –