我有一个程序可以写入日志文件等。现在我把它写成一个Android应用程序。使用我计算机上的 .jar 文件,我可以毫无问题地访问该文件。
Java代码:
static final String PATH = "\\\\192.168.1.1\\VolumeX\\log.lst";
File f = new File (PATH);
FileUtils.write (f, "textToWrite", true);
作为一个安卓应用程序(手机连接到同一个网络)我无法访问这个文件。当我尝试使用 Android 应用程序编写文件时,我总是得到一个 IOException。
我希望有人可以帮助我,并给我一个关于我应该如何做正确的提示。抱歉我的英语不好,感谢您的帮助。