我在数据存储中创建了一个登录名(种类)。在登录中,我创建了两个字段用户名和密码。当用户更改密码时,我想更新数据存储区中的字段值。但是当我使用这段代码时,
DatastoreService datastore = DatastoreServiceFactory.getDatastoreService();
Entity passwordchange = new Entity("Login");
passwordchange.setProperty("password", "admin@123");
datastore.put(passwordchange);
它创建一个新行并插入密码“admin@123”,而不是在同一行中更新新密码。
谁能建议我如何更新字段的数据。