导航:首页 > 编程语言 > base64编码解码java

base64编码解码java

发布时间:2023-06-19 13:27:27

1. java Base64加码解码 Base64.encodeBase64 ( ) 和 new BASE64Enccoder( ).encode( )区别

Base64.encodeBase64 ( ) 可以处理换行符,
new BASE64Enccoder( ).encode( )需要单独处理换行符。
linux/windows下,推荐使用第一种,不用自己单独处理换行。

2. java base64解码 怎么是乱码呢

会乱码的原因是你的编码不一致导致的
php中的urlencode的编码是和系统编码一致的(比如windows默认gb2312,ubuntu默认utf-8)
所以首先需要确定你的系统编码,之后根据得到的系统编码在调用java的decode方法的时候,将这个编码传入(考虑到你的例子中有繁体字,所以,建议你使用utf-8编码),以下是我使用utf-8编码的例子(php环境是ubuntun下)

3. 在 java 中如何进行base64 编码和解码


//将s进行BASE64编码
publicstaticStringgetBASE64(Strings){
if(s==null)returnnull;
return(newsun.misc.BASE64Encoder()).encode(s.getBytes());
}

//将BASE64编码的字符串s进行解码
(Strings){
if(s==null)returnnull;
BASE64Decoderdecoder=newBASE64Decoder();
try{
byte[]b=decoder.decodeBuffer(s);
returnnewString(b);
}catch(Exceptione){
returnnull;
}
}
//将BASE64编码的字符串InputStream进行解码
publicstaticjava.nio.ByteBuffergetFromBASE64byte(Strings){
if(s==null)
returnnull;
BASE64Decoderdecoder=newBASE64Decoder();
try{
returndecoder.decodeBufferToByteBuffer(s);//decoder.decodeBuffer(s);
}catch(Exceptione){
returnnull;
}
}

//将BASE64编码的文件进行解码

ByteBuffervalue=Base64Utils.getFromBASE64byte(nl.item(i*2+1).getTextContent().trim()); FileOutputStreamfos=newFileOutputStream(filename); FileChannelfc=fos.getChannel();
fc.write(value);
fos.flush();
fc.close();


importsun.misc.BASE64Encoder;
importsun.misc.BASE64Decoder;

4. java中如何用base64解码图片,并返回图片,不保存。

给你发个我以前的工具类吧、
import java.awt.image.BufferedImage;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.text.SimpleDateFormat;
import java.util.Date;
import javax.imageio.ImageIO;
import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;
public class ImageChange {
/**
* 从path这个地址获取一张图纤没腊片然后转为base64码
* @param imgName 图片的名字 如:123.gif(是带后缀的)
* @param path 123.gif图片存放的路径
* @return
* @throws Exception
*/
public static String getImageFromServer(String imgName,String path)throws Exception{
BASE64Encoder encoder = new sun.misc.BASE64Encoder();
File f = new File(path+imgName);
if(!f.exists()){
f.createNewFile();
}
BufferedImage bi = ImageIO.read(f);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ImageIO.write(bi, "gif", baos);
byte[] bytes = baos.toByteArray();
return encoder.encodeBuffer(bytes).trim();
}

/**
* 将一个base64转换成图片保存在 path 文件夹下毁滑 名为imgName.gif
* @param base64String
* @param path 是一个文件夹路径
* @param imgName 图片名字(没有后缀)
* @throws Exception
*/
public static String savePictoServer(String base64String,String path,String imgName)throws Exception{
BASE64Decoder decoder = new sun.misc.BASE64Decoder();
byte[] bytes1 = decoder.decodeBuffer(base64String);
ByteArrayInputStream s = new ByteArrayInputStream(bytes1);
BufferedImage bi1 =ImageIO.read(s);

Date timeCur = new Date();
SimpleDateFormat fmtYY = new SimpleDateFormat("yyyy");
SimpleDateFormat fmtMM = new SimpleDateFormat("MM");
SimpleDateFormat fmtDD = new SimpleDateFormat("dd");
String strYY = fmtYY.format(timeCur);
String strMM = fmtMM.format(timeCur);
String strDD = fmtDD.format(timeCur);

String realPath = path+"/"+strYY+"/"+strMM+"/察芹"+strDD;

File dir=new File(realPath);
if(!dir.exists()){
dir.mkdirs();
}
String fileName=path+"\\"+strYY+"\\"+strMM+"\\"+strDD +"\\"+imgName+".gif";
File w2 = new File(fileName);//可以是jpg,png,gif格式
ImageIO.write(bi1, "jpg", w2);//不管输出什么格式图片,此处不需改动

return fileName;
}

public static void main(String[] args) throws Exception {
System.out.println(getImageFromServer("001001.gif","d:"));
}
}

阅读全文

与base64编码解码java相关的资料

热点内容
暗黑3如何登录台湾服务器 浏览:896
叮叮店这样的app怎么做的 浏览:117
如何在苹果官网查看购买的app 浏览:82
水印宝APP如何保存下载的视频 浏览:624
要不要招年龄大的程序员 浏览:28
stk单片机 浏览:402
51单片机控制直流电机正反转 浏览:112
免费优盘加密软件 浏览:354
编译优化栅栏同步 浏览:469
飞机姿态控制算法 浏览:232
交换机配置web命令 浏览:242
python实现接口请求及封装 浏览:696
折腾python中的tkinter 浏览:393
面试pdf下载 浏览:1004
压缩包去掉密码 浏览:704
电脑文件夹布局怎么样好 浏览:69
python数组转换list 浏览:690
蝙蝠pdf 浏览:341
跨境app怎么运营 浏览:204
tell写信app怎么样 浏览:572