我有这个简单的代码的麻烦。 我从网上下载的图片,并与本地保存:
File mFile = new File(context.getFilesDir(), "a.png");
if(!mFile.exists()) { mFile.createNewFile(); }
FileOutputStream fos = new FileOutputStream(mFile);
fos.write(baf.toByteArray());
fos.flush();
fos.close();
我尝试在ImageView的显示此图像,它的工作。 现在,我尝试在web视图显示保存图像。
String data = "<body>" +"<img src=\"a.png\"/></body>";
webview.loadDataWithBaseURL(getActivity().getFilesDir().toString(),data , "text/html", "utf-8",null);
它不工作,web视图显示什么。 我尝试用一个PNG我把自己在/资产的WebView,它的工作。
我想我的语法指向字符串数据的文件是错误的,但我不知道。
任何帮助表示赞赏。
谢谢。
亚历克斯。
好了,测试很多不同的事情后,我结束了这个工作的代码。
WebView webview = (WebView) view.findViewById(R.id.imageView);
try {
FileInputStream in = getActivity().openFileInput("image_behindfragment.png");
BufferedInputStream buf = new BufferedInputStream(in);
byte[] bitMapA= new byte[buf.available()];
buf.read(bitMapA);
Bitmap bM = BitmapFactory.decodeByteArray(bitMapA, 0, bitMapA.length);
//imageview.setImageBitmap(bM);
if (in != null) {
in.close();
}
if (buf != null) {
buf.close();
String imgToString = Base64.encodeToString(bitMapA,Base64.DEFAULT);
String imgTag = "<img src='data:image/png;base64," + imgToString
+ "' align='left' bgcolor='ff0000'/>";
webview.getSettings().setBuiltInZoomControls(true);
webview.setInitialScale(30);
WebSettings webSettings = webview.getSettings();
webSettings.setUseWideViewPort(true);
webview.loadData(imgTag, "text/html", "utf-8");
}
} catch (Exception e) {
e.printStackTrace();
}
String base = Environment.getExternalStorageDirectory().getAbsolutePath().toString();
String imagePath = "file://"+ base + "/a.png";
String html = "<html><head></head><body><img src=\""+ imagePath + "\"></body></html>";
WebView.loadDataWithBaseURL("file:///mnt/sdcard/Your Folder/", html, "text/html","utf-8", "");