new File()给出了IllegalArgumentException:File包含一个路径分隔符

时间:2011-12-12 12:29:35

标签: android file

我编写了以下代码来删除SD卡中的文件:

/**
 * Deletes a file
 * 
 * @param pathToFile
 *            Path to file, eg "/sdcard/test.txt"
 * @throws IOException
 *             Throws if file doesnt exist
 */
public static void deleteFile(String pathToFile) throws IOException {
    File file = new File(pathToFile);
    if (file.delete() == false) {
        throw new IOException();
    }
}

但是,如果我想用这种方法删除文件,我会收到此错误:

E/AndroidRuntime(18085): java.lang.RuntimeException: Unable to create service de.bulling.smstalkvc_offline.InstallerService: java.lang.IllegalArgumentException: File /mnt/sdcard/voicefiles.zip contains a path separator
E/AndroidRuntime(18085):    at android.app.ActivityThread.handleCreateService(ActivityThread.java:2969)
E/AndroidRuntime(18085):    at android.app.ActivityThread.access$3300(ActivityThread.java:125)
E/AndroidRuntime(18085):    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2087)
E/AndroidRuntime(18085):    at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime(18085):    at android.os.Looper.loop(Looper.java:123)
E/AndroidRuntime(18085):    at android.app.ActivityThread.main(ActivityThread.java:4627)
E/AndroidRuntime(18085):    at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime(18085):    at java.lang.reflect.Method.invoke(Method.java:521)
E/AndroidRuntime(18085):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:858)
E/AndroidRuntime(18085):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
E/AndroidRuntime(18085):    at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime(18085): Caused by: java.lang.IllegalArgumentException: File /mnt/sdcard/voicefiles.zip contains a path separator
E/AndroidRuntime(18085):    at android.app.ContextImpl.makeFilename(ContextImpl.java:1602)
E/AndroidRuntime(18085):    at android.app.ContextImpl.deleteFile(ContextImpl.java:428)
E/AndroidRuntime(18085):    at android.content.ContextWrapper.deleteFile(ContextWrapper.java:163)
E/AndroidRuntime(18085):    at de.bulling.smstalkvc_offline.InstallerService.onCreate(InstallerService.java:30)
E/AndroidRuntime(18085):    at android.app.ActivityThread.handleCreateService(ActivityThread.java:2959)
E/AndroidRuntime(18085):    ... 10 more

我做错了什么?

3 个答案:

答案 0 :(得分:4)

您似乎在InstallerService.java第30行调用了错误的功能。请确保在使用类名之前调用自己的deleteFileYourClass.deleteFile();

我想某种方式ContextWrapper.deleteFile()被调用,它不接受路径分隔符。

答案 1 :(得分:1)

错误未显示在您显示的代码中。 错误发生在您的InstallerService.java第30行:

E / AndroidRuntime(18085):在android.content.ContextWrapper.deleteFile(ContextWrapper.java:163) E / AndroidRuntime(18085):at de.bulling.smstalkvc_offline.InstallerService.onCreate(InstallerService.java:30)

对deleteFile()的调用不应该有路径分隔符,因为它的描述是“删除与此Context的应用程序包关联的给定私有文件”。即,它的用途仅是删除安装应用程序的私有子目录中的文件。

答案 2 :(得分:0)

您正在使用相同的名称和签名覆盖类ContextImpl中的方法(您的活动从中扩展)。我想,在创建活动时会调用此方法。

尝试将“deleteFile”更改为其他名称。