大家好,又见面了,我是你们的朋友全栈君。
创建java项目
运行java main,会在图片路劲下生成加密后的图片
package com.example;
public class MyClass {
public static void main(String[] args){
//加密图片的路劲
KMD1.encrypt(“F:/metro.png”);
}
}
加密的类
public class KMD1 {
public static void encrypt(String filePath){
byte[] tempbytes = new byte[5000];
try {
InputStream in = new FileInputStream(filePath);
OutputStream out = new FileOutputStream(filePath.subSequence(0, filePath.lastIndexOf("."))+"2.png");
while (in.read(tempbytes) != -1) {//简单的交换
byte a = tempbytes[0];
tempbytes[0] = tempbytes[1];
tempbytes[1] = a;
out.write(tempbytes);//写文件
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
android 里调用解密的方法、然后显示图片
Bitmap bitmap=getImageFromAssets(MainTab02.this.getActivity(),”beijing2.png”);
if(bitmap != null) {
imageView.setImage(ImageSource.bitmap(bitmap));
} else {
Log.i(TAG,”图片为空”);
System.out.println(“图片为空”);
}
public static Bitmap getImageFromAssets(Context context, String fileName) {
Bitmap image = null;
AssetManager am = context.getResources().getAssets();
try {
InputStream is = am.open(fileName);
byte[] buffer = new byte[1500000];//足够大
is.read(buffer);
for(int i=0; i
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/151971.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...