如何在Java中编写连续命名的文件?
我有一种保存文件的方法,但我不知道如何保存具有连续名称的文件,例如 file001.txt
、file002.txt
、file003 .txt
, filennn.text
我怎样才能实现这个目标?
I have a method for saving a File, but I don't know how to save files with consecutive names such as file001.txt
, file002.txt
, file003.txt
, filennn.text
How can I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用以下代码行来创建文件名。
然后,您只需使用该字符串来创建新文件:
以下代码将创建编号为 1 - 100 的文件:
或者,您将需要一个静态变量,每次创建新文件时都会递增该变量。
You can use the following line of code to create the filenames.
Then you will just use that string to create new files:
The following code will create files numbered 1 - 100:
Or, you will need to have a static variable that you increment every time you create a new file.
如果文件已经存在,您可能需要跳过写入该文件。
这可以通过将以下代码放置在 Justin 'jjnguy' Nelson 提出的 for 循环的开头来轻松完成,例如:
It may be desirable for you to skip over writing to a file if it already exists.
This could be done easily by placing the following at the beginning of the for loop proposed by Justin 'jjnguy' Nelson, for example: