作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写一个应用程序,将照片保存在内部存储中。我正在使用此 blog 中的解决方案
我以前知道两个文件的名称,所以我可以在代码中使用,但在我的应用程序中还会有一个图库。所以我的问题是:如何在不知道文件名的情况下保存文件(文件名是使用日期和时间生成的)?内容提供者的 oncreate 在初始化期间启动,那么如何将新文件名传递给内容提供者?
提前致谢。
最佳答案
在内容提供程序类中完全删除 onCreate 中的文件创建。
public static String lastPictureSaved = "";
更改函数openFile
。在那里,文件名将根据日期时间和创建的文件进行命名。
Date date = new Date();
date.getTime();
SimpleDateFormat formatter = new SimpleDateFormat("yyyyMMdd_HHmmss");
String datetimestr = formatter.format(date);
lastPictureSaved = getContext().getFilesDir() + "/" + datetimestr + ".jpg";
File f = new File(lastPictureSaved);
try
{
f.createNewFile();
}
catch (IOException e)
{
e.printStackTrace();
Log.d(TAG, e.getMessage());
}
在主机 Activity 中更改
File out = new File(getFilesDir(), "newImage.jpg");
至
File out = new File(MyFileContentProvider.lastPictureSaved);
关于java - 具有内部存储的内容提供商,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24608421/
我在前几天的测验中遇到了以下问题。 Consider the code fragment (assumed to be in a program in which all variables are
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 9 年前。 Improve this qu
我刚开始接触 Objective-C,一般来说是 C,所以我想这也是一个 C 问题。它更像是一个为什么的问题,而不是一个如何做的问题问题。 我注意到,在除以两个整数时,小数部分向下舍入为 0,即使结果
我是一名优秀的程序员,十分优秀!