java.io.FileNotFoundException:(只读文件系统)Mac

java.io.FileNotFoundException: (Read-only file system) Mac

我有一个 SpringBoot 应用程序,我试图在其中测试条形码的生成,但我收到此错误 java.io.FileNotFoundException: (Read-only file system) Mac

这是完成此任务的代码:

pom.xml

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.13</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>net.sf.barcode4j</groupId>
            <artifactId>barcode4j</artifactId>
            <version>2.1</version>
        </dependency>

Test Class

public class FooTest extends TestCase {
    @Test
    public void testP() {
        try {
            Code128Bean bean = new Code128Bean();
            final int dpi = 160;

            //Configure the barcode generator
            bean.setModuleWidth(UnitConv.in2mm(2.8f / dpi));

            bean.doQuietZone(false);

            //Open output file
            File outputFile = new File("/" + "test" + ".JPG");

            FileOutputStream out = new FileOutputStream(outputFile);

            BitmapCanvasProvider canvas = new BitmapCanvasProvider(
                    out, "image/x-png", dpi, BufferedImage.TYPE_BYTE_BINARY, false, 0);

            //Generate the barcode
            bean.generateBarcode(canvas, "test");

            //Signal end of generation
            canvas.finish();

            System.out.println("Bar Code is generated successfully…");
        }
        catch (IOException ex) {
            ex.printStackTrace();
        }
    }
}

Error

java.io.FileNotFoundException: /test.JPG (Read-only file system)
    at java.io.FileOutputStream.open0(Native Method)
    at java.io.FileOutputStream.open(FileOutputStream.java:270)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213)
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162)

关于如何在我的机器 (MacBook) 上运行它有什么想法吗? Linux 的配置会有所不同吗?

问题是这样的:

File outputFile = new File("/" + "test" + ".JPG");

注意“/”为根目录

Mac OS 上的根目录显然位于只读文件系统中。这意味着您不能写入它。

在 Linux / UNIX 系统上,根文件系统通常不是只读的,但您的应用程序无论如何都没有写入根目录的权限。

Any ideas on how I could make this work.

不要尝试将文件写入根目录“/”。找个更合适的地方;例如当前工作目录、用户主目录、临时目录等。

写入根“/”不是一个好主意。最佳做法是写入主目录,因为默认情况下您拥有主目录的所有权限:

File outputFile = new File(System.getProperty("user.home"), "test.JPG");

避免文件分隔符