无法编码未保存的解析文件,使用ParseUser

问题描述 投票:5回答:2

我正在尝试使用个人资料图片进行signUp活动,但出现一条错误消息:无法对未保存的解析文件进行编码。我在另一个类中有相同的代码,并且没有任何问题。

我认为问题可能出在使用ParseUser而不是ParseObject。请帮助我,这是我的代码。

    public class SignUpActivityStep3 extends ActionBarActivity {

    public static final String YOUR_APPLICATION_ID = "kuN8ihs88AYhRR1jIWT9psCGUXxSOveJPqVVsBnq";
    public static final String YOUR_CLIENT_KEY = "vC4eA9CqulpgkxJ7sTPtoPSANkMxFeiFlYXwODYK";

    byte[] Image;
    ParseFile photo = null;
    String User, Pass, Email, Description;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_signupstep3);

        Parse.initialize(this, YOUR_APPLICATION_ID, YOUR_CLIENT_KEY);

        EditText Desc = (EditText) findViewById(R.id.txtDesc);
        Button Finish = (Button) findViewById(R.id.btnFinish);

        Intent intent = getIntent();
        User = intent.getStringExtra("User");
        Pass = intent.getStringExtra("Pass");
        Email = intent.getStringExtra("Email");
        Image = intent.getByteArrayExtra("Image");        

        photo = new ParseFile("userpicture.png", Image);
        photo.saveInBackground();

        savetoParse();


    }

    private void savetoParse() {

        ParseUser user = new ParseUser();
        user.setUsername(User.toString());
        user.setPassword(Pass.toString());
        user.put("Profile", photo);
        user.setEmail(Email.toString());

        user.signUpInBackground(new SignUpCallback() {

            @Override
            public void done(ParseException e) {

                if (e != null) {

                    Toast.makeText(getApplicationContext(),
                            "Saving user failed." + e.getMessage(), Toast.LENGTH_SHORT).show();

                    if (e.getCode() == 202) {

                        Toast.makeText(
                                getApplicationContext(),
                                "Username already taken. \n Please choose another username.",
                                Toast.LENGTH_LONG).show();

                    }

                } else {

                    Toast.makeText(getApplicationContext(), "User Saved",
                            Toast.LENGTH_SHORT).show();

                    /*Do some things here if you want to.*/

                }

            }
        });

    }
}
android parse-platform
2个回答
9
投票

您需要等待解析文件完成保存后才能尝试注册用户。您需要执行以下操作:

photo = new ParseFile("userpicture.png", Image);

file.saveInBackground(new SaveCallback() {
    public void done(ParseException e) {
       // If successful add file to user and signUpInBackground
       if(null == e)
           savetoParse();
    }
});

0
投票

我也遇到了同样的问题,但后来我想保存图像需要先登录,因此可以使用ParseUser.LogInBackGround方法使用用户名和密码登录,或者使用Parse.enableLocalDatastore(this);启用自动用户创建和登录in。

© www.soinside.com 2019 - 2024. All rights reserved.