创建 ParseObject 时出现 java android i/o 失败异常

我在 AWS 上启动了一个 Parse 服务器实例,我想在其中存储来自 android 应用程序的数据。


在模块的 gradle 中,我在依赖项下插入了以下内容


implementation 'com.parse.bolts:bolts-tasks:1.4.0'

implementation 'com.parse:parse-android:1.17.3'

并创建了一个初始化解析配置的新应用程序


import android.app.Application;


import android.app.Application;

import android.util.Log;


import com.parse.Parse;

import com.parse.ParseACL;

import com.parse.ParseException;

import com.parse.ParseObject;

import com.parse.ParseUser;

import com.parse.SaveCallback;


public class StarterApp extends Application {


    @Override

    public void onCreate() {

        super.onCreate();


        // Enable Local Datastore.

        Parse.enableLocalDatastore(this);


        // Add your initialization code here

        Parse.initialize(new Parse.Configuration.Builder(getApplicationContext())

                .applicationId(myAppId)

                .clientKey(myClientKey)

                .server(serverAddress)

                .build()

        );


        ParseObject object = new ParseObject("ExampleObject");

//        object.put("id", "123");

//        object.put("name", "jack");




        object.saveInBackground(new SaveCallback () {

            @Override

            public void done(ParseException ex) {

                if (ex == null) {

                    Log.i("Parse Result", "Successful!");

                } else {

                    Log.i("Parse Result", "Failed" + ex.toString());

                }

            }

        });



        ParseUser.enableAutomaticUser();


        ParseACL defaultACL = new ParseACL();

        defaultACL.setPublicReadAccess(true);

        defaultACL.setPublicWriteAccess(true);

        ParseACL.setDefaultACL(defaultACL, true);


    }

}

这对我来说是全新的,我正在学习一门 3 年的 Android 开发课程。当我运行它时,异常不断被相同的错误捕获:

com.parse.ParseRequest$ParseRequestException: i/o failure

错误来自哪里?怎么解决?


芜湖不芜
浏览 147回答 3
3回答

小唯快跑啊

主要问题是您没有连接到服务器。[1]-确保您已将应用程序 ID 和客户端 ID 添加到AndroidManifest** 使用您的密钥更改 _App_Id_here 和 _Client_key_here,例如“ISIGDGU4YGCE673”。<meta-data&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; android:name="com.parse.SERVER_URL"&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; android:value="https://parseapi.back4app.com" />&nbsp; &nbsp; &nbsp; &nbsp; <meta-data&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; android:name="com.parse.APPLICATION_ID"&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; android:value="_App_Id_Here_" /> //<- put your key&nbsp; &nbsp; &nbsp; &nbsp; <meta-data&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; android:name="com.parse.CLIENT_KEY"&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; android:value="_client_Key_here_" /> //<- put your key[2]- 将存储库添加{ maven { url 'https://jitpack.io' } }到您的build.gradle(Project:xyz)[3]- 确保将 .server 字段更改为您的解析服务器、AppId 和 clientKey:Parse.initialize(new Parse.Configuration.Builder(getApplicationContext())&nbsp; .applicationId(myAppId)//"myAppId" should be sth like ->"ASHWD63787EDXSG8"&nbsp; .clientKey(myClientKey)//should be sth like ->"tdf29yedih287823"&nbsp; .server(serverAddress)//something like-> "https://parseapi.back4app.com"&nbsp; .build()&nbsp; &nbsp; &nbsp; &nbsp; );从服务器的仪表板设置中获取这些密钥 -> 密钥

达令说

如果您的托管解析服务器位于 HTTP 服务器而不是 HTTPS 上,也会出现此问题。因为 Android 9.0 及更高版本将不允许您通过 HTTP 使用明文信息。因此,如果是这种情况,那么您可以执行以下操作:在您的清单文件中,并在您的清单标记中添加该android:targetSandboxVersion="1"行。所以它看起来像<manifest xmlns:android="http://schemas.android.com/apk/res/android"&nbsp; &nbsp; package="com.example.app"&nbsp; &nbsp;android:targetSandboxVersion="1">在您的清单文件中,在应用程序标记中添加该android:usesCleartextTraffic="true"行。所以它看起来像<application&nbsp; &nbsp; &nbsp; &nbsp; android:name=".Example"&nbsp; &nbsp; &nbsp; &nbsp; android:allowBackup="true"&nbsp; &nbsp; &nbsp; &nbsp; ....&nbsp; &nbsp; &nbsp; &nbsp; android:usesCleartextTraffic="true">

红糖糍粑

固定的。出于某种原因,来自 AWS 服务的 Parse 服务器仪表板。例如,http&nbsp;: //ec2-18-220-53-0.us-east-2.compute.amazonaws.com 没有应用程序类别,您会注意到它只显示我的 Bitnami Parse API 而没有应用程序选项。这意味着首先,您无法将数据传递给服务器上应该可用的任何应用程序。其次,将服务器连接到您的 android 应用程序将无法正常工作,因为主密钥现在实际上与最近的客户端密钥不同。而不是 AWS 使用 Back4App 以完全相同的方式工作。Back4App 是基于 Parse Server Platform 的可扩展后端服务。优点:您无需使用 SSH 客户端连接到服务器并检索您的 APP ID、客户端密钥或服务器 url。一切都在仪表板上的服务器设置下。继续 Back4App:第 1 步:在 back4app 上创建一个帐户第二步:创建一个App,你可以根据本教程命名为instagramandroid第 3 步:按照此处链接中的所有剩余信息进行操作,一切正常。https://www.back4app.com/docs/pages/android/how-to-build-an-android-app-on-back4app注意:添加解析依赖时,最新的是1.17.3。除非您可能想使用 1.20.0,否则它会很好用,我试过了,但并没有真正起作用。添加它就像你通常会在你的 gradle 文件中添加一个依赖项一样:'implementation com.parse:parse-android:1.17.3'
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java