Java-如何在Android中从Azure移动服务中检索和使用单个值

Java-如何在Android中从Azure移动服务中检索和使用单个值,第1张

Java-如何在Android中从Azure移动服务中检索和使用单个值

我解决了。无需创建自定义API。

只需遵循基础知识,下面是代码:-

final String[] design = new String[1];private MobileServiceTable<User> mUser;mUser = mClient.getTable(User.class); new AsyncTask<Void, Void, Void>() {     @Override     protected Void doInBackground(Void... params) {         try {  final MobileServiceList<User> result =          mUser.where().field("name").eq(x).execute().get();  for (User item : result) {     // Log.i(TAG, "Read object with ID " + item.id);      desig[0] = item.getDesignation(); //getDesignation() is a function in User class ie- they are getters and setters      Log.v("FINALLY DESIGNATION IS", desig[0]);  }         } catch (Exception exception) { exception.printStackTrace();         }         return null;     }     @Override     protected void onPostExecute(Void aVoid) {         super.onPostExecute(aVoid);         designation.setText(desig[0]);     } }.execute();

不要 忘记

User
serialization
所有人创建一个类。另外,您应该定义数组

*如果无法正常工作,请 *随时写

编辑:-

design[0]
是大小为1的数组。

eq(x)
等于
x
where,
x
变量包含要从数据库(azure)指定的用户名。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5094546.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-16
下一篇 2022-11-16

发表评论

登录后才能评论

评论列表(0条)

保存