无法将数据保存到Parse.com云服务

时间:2015-09-07 00:01:07

标签: java android parse-platform

我正在尝试在我的Android应用程序中保存“Parse.com”中的文件。但是,我被以下错误所困扰

d

下面提到的是我的代码:

if [ "$(find DIRECTORY -maxdepth 1 -printf %y)" = "dd" ]; then
    # It has only one subdirectory and no other content
fi

我很确定我提供的文件路径是正确的。下面提到的是我的堆栈跟踪:

  java.lang.IllegalArgumentException: invalid type for value: class java.io.File

任何建议都有帮助!!!

1 个答案:

答案 0 :(得分:1)

在Android中,您无法直接从本地系统导入文件。

首先将它保存到sdacrd或将该文本文件复制到android项目中的原始文件夹。

然后你可以将它保存到任何适当的apis。

File f = new File("C:\\Users\\rishii\\AndroidStudioProjects\\Introduction\\file_input9.txt

此行导致问题。