-3

我们可以在文件夹名称中加上“:”吗?

例如,如果我希望我的文件(案例)的名称是今天的时间(在此表格上 14:38)。

String outString = new SimpleDateFormat("dd-MM-yyyy hh-mm-ss").format(new Date());
File dossierphoto = new File(Environment.getExternalStorageDirectory() +
                             "/Dossier Client/" +
                             cli.getClientId() + "/" +
                             outString);
4

1 回答 1

3

不,您不能将“:”字符放在文件夹名称上。您可以使用“_”字符代替“:”。例如:14_38。

当然,你应该改变这个char auto。

File dossierphoto = new File(Environment.getExternalStorageDirectory() + "/Dossier Client/" + cli.getClientId() + "/" + outString.replace(":","_"));

于 2014-03-26T13:52:19.993 回答