「java開発」画像をBase64文字列に変換するコード

//画像をBase64文字列に変換
public static String GetImageStr()
{
String imgFile = “e://test.jpg";
InputStream in = null;
byte[] data = null;
try
{
in = new FileInputStream(imgFile);
data = new byte[in.available()];
in.read(data);
in.close();
}
catch (IOException e)
{
e.printStackTrace();
}
BASE64Encoder encoder = new BASE64Encoder();
return encoder.encode(data);
}
//base64文字列を画像に変換
public static boolean GenerateImage(String imgStr)
{
if (imgStr == null)
return false;
BASE64Decoder decoder = new BASE64Decoder();
try
{
byte[] b = decoder.decodeBuffer(imgStr);
for(int i=0;i<b.length;++i)
{
if(b[i]<0)
{
b[i]+=256;
}
}
//jpg画像作成
String imgFilePath = “e://demo.jpg";
OutputStream out = new FileOutputStream(imgFilePath);
out.write(b);
out.flush();
out.close();
return true;
}
catch (Exception e)
{
return false;
}
}

Java

Posted by arkgame