使用 Raspbian Buster 编写文件

Writing a file with Raspian Buster

我想用 Raspian Buster 写一个文件。 使用 Raspian Stretch(依赖于 Debian 9),它可以毫无问题地工作。 相同的代码不适用于 Raspian Buster (Debian 10)。

File myFile = new File("/media/usb/test.properties");
boolean success = myFile.createNewFile();

即使目录具有 777 oktal 权限,在尝试写入文件时总是会出现以下异常:

java.io.IOException: Das Dateisystem ist nur lesbar (my translation: the file system is readable only)

当我第一次在目录中手动创建指定文件,并使用Java代码检查权限时,它打印出以下结果:

File f = new File("/media/usb/test.properties");
f.exists(): true
f.canRead(): true
f.canWrite(): false

Raspian Stretch 和 Buster 之间有什么变化? 我做错了什么?

感谢您的帮助!

问题解决根据 https://github.com/eclipse/jetty.project/issues/3579

现在工作正常!