- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
在我的应用中,我实现了一个回收 View 。我有一个 json 格式的 api,其中包含一个研究所的用户信息。现在最初我想将数据存储到 Realm DB 中,然后它们用这些数据填充我的 recyclerview。因此,我正在尝试获取此过程的一些工作文件。但我还没有找到任何明确的解释。我不确定它的正确程序。我是否需要使用 Httpurlconnection 获取所有数据,然后将其存储到 Realm。或者有什么替代方法可以做到这一点。
编辑问题
在得到一些建议后,我尝试了以下代码。我正在使用 Retrofit 1.9。因为我无法使用 Retrofit 2+ 版本获取数据。当我从改造 1.9 中得到结果时。我想以此为基础保留我的代码。但是现在对如何基于 Realm 设置适配器感到困惑。因为我有单独的模型类用于 json api 和 Realm 。我想首先将数据存储到 Realm ,然后将其填充到 recaclerview。此时,recyclerview 直接填充了服务器数据。
在得到答案的指导后,我按如下方式编辑了我的问题
Json 响应
[
{
"_id": "fhfh49879787989",
"dn": "CN=9879798789",
"whenChanged": "20170704065349.0Z",
"name": "Student",
"mail": "student@mail.com",
"updated_at": "2017-07-04T18:22:43.624Z"
},
{
"_id": "595bdcf32c67a3f9ee6c2a25",
"dn": "CN=dsfdsfsdfsf",
"givenName": "Accounting Office",
"whenChanged": "20170801114732.0Z",
"name": "Accounting",
"mail": "accounting@mail.com",
"updated_at": "2017-07-04T18:22:43.641Z"
},
{
"_id": "584ab3b4122d13e1b0d1578d",
"dn": "CN=sfdfsfsdfl",
"sn": "Abels",
"title": "Student",
"givenName": "Gardrut",
"whenChanged": "20170807150844.0Z",
"department": "PMO",
"company": "Multi Lmited",
"name": "Mike Lizz",
"mail": "mail@yahoo.com",
"mobile": "+1321646498",
"updated_at": "2016-12-09T13:37:56.175Z"
},
{
"_id": "584ab3b3122d13e1b0d15735",
"dn": "CN=xdfsdfsfsdf",
"sn": "Acsdff",
"title": "Software Engineer",
"givenName": "Olin",
"whenChanged": "20170810064841.0Z",
"department": "Head",
"company": "Private limited",
"name": "James Oliver",
"mail": "mail@gmail.com",
"mobile": "+41228",
"updated_at": "2016-12-09T13:37:55.813Z"
},
....
]
我的模型类
public class ColleagueModel {
@Expose
private String _id;
@Expose
private String dn;
@Expose
private String givenName;
@Expose
private String whenChanged;
@Expose
private String name;
@Expose
private String mail;
@Expose
private String updatedAt;
@Expose
private String sn;
@Expose
private String title;
@Expose
private String department;
@Expose
private String company;
@Expose
private String mobile;
public ColleagueModel(){
}
//getter and setter
}
我使用的库
compile 'com.squareup.retrofit:retrofit:1.9.0'
compile 'com.squareup.okhttp:okhttp:2.3.0'
compile 'com.google.code.gson:gson:2.3'
compile 'com.squareup.picasso:picasso:2.5.2'
API服务
public interface ColleagueApiService {
@GET("/api/users")
void getColleague(Callback<String> flowers);
RestManagerClass
public class ColleagueRestManager {
public ColleagueApiService mColleagueApi;
public ColleagueApiService getColleagueApi() {
if (mColleagueApi == null) {
GsonBuilder gson = new GsonBuilder();
gson.registerTypeAdapter( String.class, new StringDeserializer() );
mColleagueApi = new RestAdapter.Builder()
.setEndpoint( Constants.HTTP.BASE_URL )
.setConverter( new GsonConverter( gson.create() ) )
.build()
.create( ColleagueApiService.class );
}
return mColleagueApi;
}
}
适配器类
public class MyColleaguesAdapter extends RecyclerView.Adapter<MyColleaguesAdapter.ColleagueHolder>/{
public static String TAG = MyColleaguesAdapter.class.getSimpleName();
private List<ColleagueModel> mColleague;
private Context context;
public interface ColleagueListListener {
}
public MyColleaguesAdapter(List<ColleagueModel> colleagues,Context context)
{
this.context=context;
mColleague = colleagues;
}
public void addColleague(ColleagueModel colleague) {
//Log.d(TAG,colleague.name);
mColleague.add(colleague);
notifyDataSetChanged();
}
@Override
public ColleagueHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.colleage_row_layout,parent,false);
return new ColleagueHolder(view);
}
@Override
public void onBindViewHolder(ColleagueHolder holder, int position) {
final ColleagueModel currentColleague = mColleague.get(position);
Picasso.with(holder.itemView.getContext());
holder.colleagueName.setText(currentColleague.getName());
holder.companyName.setText(currentColleague.getCompany());
holder.jobTitle.setText(currentColleague.getTitle());
holder.colleaguePicture.setImageResource( R.drawable.profile_image );
Picasso.with(holder.itemView.getContext()).load( Constants.HTTP.PHOTO_URL + currentColleague.getMail()).into(holder.colleaguePicture);
holder.cardView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent i=new Intent(context,DetailMyColleague.class);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
i.putExtra("IMAGE_URL",Constants.HTTP.PHOTO_URL + currentColleague.getMail());
i.putExtra("name",currentColleague.getName());
i.putExtra("title",currentColleague.getTitle());
i.putExtra("company",currentColleague.getCompany());
i.putExtra("mobile",currentColleague.getMobile());
i.putExtra("mail",currentColleague.getMail());
i.putExtra("department",currentColleague.getDepartment());
context.startActivity(i);
}
});
}
@Override
public int getItemCount() {
return mColleague.size();
}
public class ColleagueHolder extends RecyclerView.ViewHolder{
public CardView cardView;
public ImageView colleaguePicture;
public TextView colleagueName;
public TextView companyName;
public TextView jobTitle;
public ColleagueHolder(View itemView) {
super(itemView);
colleaguePicture= itemView.findViewById(R.id.colleague_picture);
colleagueName= itemView.findViewById(R.id.colleague_name);
companyName= itemView.findViewById(R.id.company_name);
jobTitle= itemView.findViewById(R.id.job_title);
cardView= itemView.findViewById(R.id.cardview_user);
}
}
}
Controller 类
public class Controller {
private static final String TAG = Controller.class.getSimpleName();
private UserCallbackListener mListener;
private ColleagueRestManager mApiManager;
public Controller(UserCallbackListener listener) {
mListener = listener;
mApiManager = new ColleagueRestManager();
}
public void startFetching(){
mApiManager.getColleagueApi().getColleague(new Callback<String>() {
@Override
public void success(String s, Response response) {
Log.d(TAG, "JSON :: " + s);
try {
JSONArray array = new JSONArray(s);
for(int i = 0; i < array.length(); i++) {
JSONObject object = array.getJSONObject(i);
ColleagueModel colleague = new ColleagueModel();
colleague.setName( object.optString( "name" ) );
colleague.setCompany(object.optString("company"));
colleague.setTitle(object.optString("title"));
colleague.setMail( object.optString("mail"));
colleague.setMobile(object.optString("mobile"));
colleague.setDepartment(object.optString("department"));
mListener.onFetchProgress(colleague);
}
} catch (JSONException e) {
mListener.onFetchFailed();
}
mListener.onFetchComplete();
}
@Override
public void failure(RetrofitError error) {
Log.d(TAG, "Error :: " + error.getMessage());
mListener.onFetchComplete();
}
});
}
public interface UserCallbackListener{
void onFetchStart();
void onFetchProgress(ColleagueModel user);
void onFetchProgress(List<ColleagueModel> userList);
void onFetchComplete();
void onFetchFailed();
}
}
主要 Activity
public class MyColleaguesPage extends AppCompatActivity implements Controller.UserCallbackListener/*MyColleaguesAdapter.ColleagueListListener*/ {
private RecyclerView recyclerView;
private MyColleaguesAdapter adapter;
private List<ColleagueModel> mColleagueList = new ArrayList<>();
private Controller mController;
private Realm colleagueRealm;
private LinearLayoutManager layoutManager;
private RealmResults<MyColleagueModel> colleagueResult;
private List<MyColleagueModel> filteredModelList;
private RealmChangeListener realmListener;
private static final String DIALOG_TAG = "EmployeeDialog";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.mycolleagues_layout);
configViews();
mController = new Controller(MyColleaguesPage.this);
mController.startFetching();
colleagueRealm = Realm.getDefaultInstance();
}
private void configViews() {
recyclerView = this.findViewById(R.id.colleagues_recycler);
recyclerView.setHasFixedSize(true);
recyclerView.setLayoutManager(new LinearLayoutManager(MyColleaguesPage.this));
recyclerView.setRecycledViewPool(new RecyclerView.RecycledViewPool());
adapter = new MyColleaguesAdapter(mColleagueList,getApplicationContext());
recyclerView.setAdapter(adapter);
}
RealmApplication 类
public class Application extends Application {
@Override
public void onCreate() {
super.onCreate();
Realm.init(this);
RealmConfiguration realmConfiguration = new RealmConfiguration.Builder()
.deleteRealmIfMigrationNeeded()
.build();
Realm.setDefaultConfiguration(realmConfiguration);
}
Realm 模型
public class RealmUserModel extends RealmObject{
public static final String ID = "id";
private String id;
private String dn;
private String givenName;
private String whenChanged;
private String name;
private String mail;
private String updatedAt;
private String sn;
private String title;
private String department;
private String company;
private String mobile;
//getter and setter
}
最佳答案
1.) 使用 jsonschema2pojo.org 为 json 生成 API 响应类
public class EmployeeResponse {
@SerializedName("_id")
@Expose
private String id;
@SerializedName("dn")
@Expose
private String dn;
@SerializedName("sn")
@Expose
private String sn;
@SerializedName("title")
@Expose
private String title;
@SerializedName("givenName")
@Expose
private String givenName;
@SerializedName("whenChanged")
@Expose
private String whenChanged;
@SerializedName("department")
@Expose
private String department;
@SerializedName("company")
@Expose
private String company;
@SerializedName("name")
@Expose
private String name;
@SerializedName("mail")
@Expose
private String mail;
@SerializedName("mobile")
@Expose
private String mobile;
@SerializedName("updated_at")
@Expose
private String updatedAt;
....
}
2.) 从 http://square.github.io/retrofit/ 将 Retrofit 添加到您的项目中所以你甚至不会开始考虑使用 HttpUrlConnection
compile 'com.squareup.retrofit2:retrofit:2.3.0'
compile 'com.squareup.retrofit2:converter-gson:2.3.0'
compile 'com.google.code.gson:gson:2.8.1'
3.) 你定义Retrofit接口(interface)
public interface ApiService {
@GET("api/users")
Call<List<User>> getUsers();
}
4.) 通过 Retrofit 创建 ApiService 实现
public class CustomApplication extends Application {
// add to manifest ofc
Retrofit retrofit;
ApiService service;
@Override
public void onCreate() {
super.onCreate();
retrofit = new Retrofit.Builder()
.addConverterFactory(GsonConverterFactory.create())
.baseUrl("https://app.com/")
.build();
service = retrofit.create(ApiService.class);
}
// get, get...
}
5.) 创建你的 RealmObject
public class Employee extends RealmObject {
private String id ;
private String dn ;
private String givenName ;
private String whenChanged ;
private String name ;
private String mail ;
private String updatedAt ; // maybe Date?
private String sn ;
private String title;
private String department;
private String company;
private String mobile;
//getter and setter method
}
6.) 创建映射来自 api 响应类的数据的类
public class EmployeeMapper {
Employee toEmployee(EmployeeResponse response) {
// ...
return employee;
}
}
7.) 将 Employee 写入 Realm
try(Realm r = Realm.getDefaultInstance()) {
r.executeTransaction((realm) -> {
realm.insertOrUpdate(employees);
});
}
8.) 根据文档 https://realm.io/docs/java/latest/#adapters 通过 RealmRecyclerViewAdapter 监听 Realm 的变化
public class EmployeeAdapter extends RealmRecyclerViewAdapter<...
关于android - 如何将 JSON 数据存储到 Realm 中并将其显示到 recyclerview 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45696080/
目前有没有办法允许多个用户访问同一个 Realm? 现在我能找到的唯一方法是使用“应用程序帐户”而不是用户帐户,如 another question 中所建议的那样。 . 谢谢! 最佳答案 通常,您可
我有一个在 Ubuntu 服务器上运行的 Realm Object Server (v. 1.0)。我是否应该能够通过 Realm Browser 连接到它?应用程序? 这是我尝试过的。 文件 > 打
我正在使用 React-Native。在此我指的是 this在 React-Native 中使用 Realm 数据库的文档。我可以创建 react-native 数据库,但无法在 Realm-Stud
我想使用 Realm Mobile Platform 为我的应用程序提供同步,但不强制用户注册或登录。也就是说,我想先使用本地 Realm,然后切换到同步 Realm,如果用户决定使用该功能。 这可能
在主线程上写入 Realm 可以吗? 基本上,我想在开始 ActivityA 之前将一些 ObjectA 写入 Realm。 ActivityA 启动后,它需要立即访问(在 onCreate 中)Ob
表格大小有限制吗?我需要平均每秒添加一次新数据。我正在从蓝牙设备保存信息,因此每秒都会收到应用程序处于前台/后台的更新。 谢谢 最佳答案 Realm 使用内存映射来访问文件。根据操作系统的不同,每个进
假设有两个表 Box 和 Item。盒子里可能有很多元素,一件元素只有一个盒子。我想获取给定数组中包含盒子的所有项目。我怎么能这么做呢?在 CD 中,我将通过 Item 类中的谓词和属性来完成此操作,
我正在使用 realm-js 通过 React Native 为用户在他们的设备上存储数据,并且在工作流中有一点我想复制本地 Realm 中的所有数据进入同步 Realm (在 ROS 上持久化)。我
是否可以在不同用户之间共享同一个对象?这样,即使他们拥有自己的私有(private)对象,他们也可以在其中一些对象上进行共享/协作。我该怎么做? 最佳答案 来自 Realm 的 Katsumi。 Re
在Realm中有两种写事务的方式,它们有什么区别? 1. try! realm.write { ... } 2. realm.beginWrite() ... try! realm.commitW
我需要向 Realm 写入大量数据(例如 200000 输入),我使用 realm.add() 在后台线程中写入数据。但它收到了崩溃消息: Terminating app due to uncaugh
在 iOS 上,可以检查 Realm 的内容通过使用 Realm Browser 打开相应的文件来数据库.可以使用以下代码行打印该文件的路径(如 here 所述): print(Realm.Confi
realm.io 数据库是否支持多列索引或排序索引? documentation没有提到这些功能,但这似乎很奇怪,因为 Realm 被宣传为核心数据的替代品。 最佳答案 是的! Realm 允许您在单
我们在 AWS ECS 中运行 Keycloak docker 镜像,我们需要一种使用 ansible 导出 Realm 和所有用户以实现自动化目的的方法。我们可以使用 ansible 运行以下命令来
我正在考虑将新的 Realm 移动平台用于我的一个项目。我已经阅读了指南,并且能够在本地启动并运行它没有问题。我的问题是,部署 Realm 对象服务器以便远程运行的最佳方式是什么?我通读了找到的指南
我想在我的 Realm 数据库中使用已经预填充的数据来交付我的应用程序。我是否必须简单地将它复制到文档目录中,或者还有其他事情要做吗? 最佳答案 Realm 的文档中有一节关于 "Bundling a
我已按 Realm 创建了数据库,但无法找到该文件,因为我的操作系统(Yosemite)在/private/var/mobile 中没有移动文件夹。 我应该如何访问我的 Realm 以在浏览器中运行?
我有两个 Realm : public class ChatRealm extends RealmObject { private String id; private RealmLi
像上图一样,我想将RealmObject重命名为WeekRealmObject,这样命名更清晰。我尝试搜索 Stackoverflow 并检查 Realm Swift 文档及其示例,但似乎只能通过迁移
我通过 SyncCredentials 登录 Realm 允许创建用户,代码如下: SyncCredentials credentials = SyncCredentials.usernamePass
我是一名优秀的程序员,十分优秀!