我想在Base64中对URL图像进行编码和保存。 我发现了几个从本地文件进行编码而不是从URL进行编码的示例。 是否有可能这样做?
我尝试了类似的东西,但没有成功。任何线索,有帮助吗? 谢谢你的回答。
public static void main(String[] args) {
String imageUrl = "http://www.avajava.com/images/avajavalogo.jpg";
String destinationFile = "image.jpg";
try {
// Reading a Image file from file system
URL url = new URL(imageUrl);
InputStream is = url.openStream();
FileInputStream imageInFile = new FileInputStream(is.toString());
byte imageData[] = new byte[2048];
imageInFile.read(imageData);
// Converting Image byte array into Base64 String
String imageDataString = encodeImage(imageData);
System.out.println("imageDataString : " + imageDataString);
System.out.println("Image Successfully Manipulated!");
} catch (FileNotFoundException e) {
System.out.println("Image not found" + e);
} catch (IOException ioe) {
System.out.println("Exception while reading the Image " + ioe);
}
}
/**
* Encodes the byte array into base64 string
*
* @param imageByteArray - byte array
* @return String a {@link java.lang.String}
*/
public static String encodeImage(byte[] imageByteArray) {
return Base64.encodeBase64URLSafeString(imageByteArray);
}
答案 0 :(得分:8)
通过在参数中传递图像url来尝试此功能。
private String getByteArrayFromImageURL(String url) {
try {
URL imageUrl = new URL(url);
URLConnection ucon = imageUrl.openConnection();
InputStream is = ucon.getInputStream();
ByteArrayOutputStream baos = new ByteArrayOutputStream();
byte[] buffer = new byte[1024];
int read = 0;
while ((read = is.read(buffer, 0, buffer.length)) != -1) {
baos.write(buffer, 0, read);
}
baos.flush();
return Base64.encodeToString(baos.toByteArray(), Base64.DEFAULT);
} catch (Exception e) {
Log.d("Error", e.toString());
}
return null;
}
答案 1 :(得分:3)
您不应该使用FileInputStream。
使用类似:
URL url = new URL(imageUrl);
BufferedInputStream bis = new BufferedInputStream(url.openConnection().getInputStream());
此外,您需要循环读取数据,直到您读取图像的所有字节为止。
答案 2 :(得分:3)
以下代码将image转换为base64字符串:
public String getBase64EncodedImage(String imageURL) throws IOException {
java.net.URL url = new java.net.URL(imageURL);
InputStream is = url.openStream();
byte[] bytes = org.apache.commons.io.IOUtils.toByteArray(is);
return Base64.encodeBase64String(bytes);
}
P.S。上面的代码使用commons-io
作为依赖项。
答案 3 :(得分:0)
你明白这条线的作用吗?
FileInputStream imageInFile = new FileInputStream(is.toString());
首先它在toString
对象上调用InputStream
。这将产生一个类似于InputStream@23e5aa
的字符串。然后它尝试打开具有该名称的文件。您不想读取名为InputStream@23e5aa
的文件,因此这是完全错误的。
您要做的是将原始InputStream is
中的所有字节读入字节数组。如何做到这一点在这个问题的答案中解释:
答案 4 :(得分:0)
/**
*
* @param url - web url
* @return - Base64 String
* Method used to Convert URL to Base64 String
*/
public String convertUrlToBase64(String url) {
URL newurl;
Bitmap bitmap;
String base64 = "";
try {
StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
StrictMode.setThreadPolicy(policy);
newurl = new URL(url);
bitmap = BitmapFactory.decodeStream(newurl.openConnection().getInputStream());
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, outputStream);
base64 = Base64.encodeToString(outputStream.toByteArray(), Base64.DEFAULT);
} catch (Exception e) {
e.printStackTrace();
}
return base64;
}