如何使用Java在raspberry pi中创建文件夹?
我正在研究java和Raspberry pi,我试图通过使用在其上运行的Java代码将图像放在raspberry pi的文件夹中。但是它不起作用,但是在其他Linux和Linux上运行相同的代码 Windows系统。我认为在那个文件夹创建中有一些访问被拒绝。
即使我尝试了命令
ch mod 777 /home/pi
但图片不在该文件夹中。帮助我。
以下是我使用的Java代码
InputStream input = getClass().getResourceAsStream("/test3.png");
BufferedImage image = null;
image = ImageIO.read(input);
String folderName = "/home/image";
File folderPath = new File(folderName);
if (!folderPath.exists()) {
System.out.println("Folder Path " + folderPath);
folderPath.mkdirs();
}
String filePath = folderPath + "/t3.png";
ImageIO.write(image, "png", new File(filePath));'