resend data to server when connection is back
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I want to send data to server with retrofit
library .
And I want to know how to resend my data to server when network is back
public void sendPost(String title, String body) {
mpiService.savePost(title, body, 1).enqueue(new Callback<Post>() {
@Override
public void onResponse(Call<Post> call, Response<Post> response) {
if(response.isSuccessful()) {
showResponse(response.body().toString());
Log.i(TAG, "post submitted to API." + response.body().toString());
}
}
@Override
public void onFailure(Call<Post> call, Throwable t) {
Log.e(TAG, "Unable to submit post to API.");
}
});
}
I know I should create database and use broadcast
to check status
I want to know how I can store data to database with data field or jSONArray
?
Please help me with database creation
android database retrofit rx-java broadcast
add a comment |
I want to send data to server with retrofit
library .
And I want to know how to resend my data to server when network is back
public void sendPost(String title, String body) {
mpiService.savePost(title, body, 1).enqueue(new Callback<Post>() {
@Override
public void onResponse(Call<Post> call, Response<Post> response) {
if(response.isSuccessful()) {
showResponse(response.body().toString());
Log.i(TAG, "post submitted to API." + response.body().toString());
}
}
@Override
public void onFailure(Call<Post> call, Throwable t) {
Log.e(TAG, "Unable to submit post to API.");
}
});
}
I know I should create database and use broadcast
to check status
I want to know how I can store data to database with data field or jSONArray
?
Please help me with database creation
android database retrofit rx-java broadcast
add a comment |
I want to send data to server with retrofit
library .
And I want to know how to resend my data to server when network is back
public void sendPost(String title, String body) {
mpiService.savePost(title, body, 1).enqueue(new Callback<Post>() {
@Override
public void onResponse(Call<Post> call, Response<Post> response) {
if(response.isSuccessful()) {
showResponse(response.body().toString());
Log.i(TAG, "post submitted to API." + response.body().toString());
}
}
@Override
public void onFailure(Call<Post> call, Throwable t) {
Log.e(TAG, "Unable to submit post to API.");
}
});
}
I know I should create database and use broadcast
to check status
I want to know how I can store data to database with data field or jSONArray
?
Please help me with database creation
android database retrofit rx-java broadcast
I want to send data to server with retrofit
library .
And I want to know how to resend my data to server when network is back
public void sendPost(String title, String body) {
mpiService.savePost(title, body, 1).enqueue(new Callback<Post>() {
@Override
public void onResponse(Call<Post> call, Response<Post> response) {
if(response.isSuccessful()) {
showResponse(response.body().toString());
Log.i(TAG, "post submitted to API." + response.body().toString());
}
}
@Override
public void onFailure(Call<Post> call, Throwable t) {
Log.e(TAG, "Unable to submit post to API.");
}
});
}
I know I should create database and use broadcast
to check status
I want to know how I can store data to database with data field or jSONArray
?
Please help me with database creation
android database retrofit rx-java broadcast
android database retrofit rx-java broadcast
edited Jan 5 at 5:00
pouyan
2,36421633
2,36421633
asked Jan 4 at 17:19
Saeed8697Saeed8697
64
64
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
You can use realm for your local database. It is easy to use, faster, well documented and support various platform. For more details visit their official website: https://realm.io/docs/java/latest/
add a comment |
You have many options:
1) SQLiteOpenHeleper:
You can store data into SQLite database with SQLiteOpenHelper class.
for a simple implementation watch this link :
Android SQLite Example
2) Room Library: (Recommended)
This is a great library written by google that provides an abstraction layer over SQLite to allow for more robust database access while harnessing the full power of SQLite.
for a simple implemantation watch this links:
A Beginner’s Guide to the Room Persistence Library
Room Persistence Library
3) Shared Prefrences:
If you have a simple data you can store it via Shared Prefrences. it is not a database though. Shared Preferences allow you to save and retrieve data in the form of key,value pair inside xml files in device data folder.
for a simple implementation watch this:
How to use SharedPreferences in Android to store, fetch and edit values
4) Realm:
Realm is a mobile database and a replacement for SQLite. Realm is not using SQLite as it’s engine. Instead it has own C++ core and aims to provide a mobile-first alternative to SQLite.
You can learn it with this link:
How to use Realm for Android like a champ, and how to tell if you’re doing it wrong
5) ETC
There is some other types like File (read/write) and greenDao. You can learn them by just simple googling :)
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54043423%2fresend-data-to-server-when-connection-is-back%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use realm for your local database. It is easy to use, faster, well documented and support various platform. For more details visit their official website: https://realm.io/docs/java/latest/
add a comment |
You can use realm for your local database. It is easy to use, faster, well documented and support various platform. For more details visit their official website: https://realm.io/docs/java/latest/
add a comment |
You can use realm for your local database. It is easy to use, faster, well documented and support various platform. For more details visit their official website: https://realm.io/docs/java/latest/
You can use realm for your local database. It is easy to use, faster, well documented and support various platform. For more details visit their official website: https://realm.io/docs/java/latest/
answered Jan 4 at 18:14
Sultan MahmudSultan Mahmud
498210
498210
add a comment |
add a comment |
You have many options:
1) SQLiteOpenHeleper:
You can store data into SQLite database with SQLiteOpenHelper class.
for a simple implementation watch this link :
Android SQLite Example
2) Room Library: (Recommended)
This is a great library written by google that provides an abstraction layer over SQLite to allow for more robust database access while harnessing the full power of SQLite.
for a simple implemantation watch this links:
A Beginner’s Guide to the Room Persistence Library
Room Persistence Library
3) Shared Prefrences:
If you have a simple data you can store it via Shared Prefrences. it is not a database though. Shared Preferences allow you to save and retrieve data in the form of key,value pair inside xml files in device data folder.
for a simple implementation watch this:
How to use SharedPreferences in Android to store, fetch and edit values
4) Realm:
Realm is a mobile database and a replacement for SQLite. Realm is not using SQLite as it’s engine. Instead it has own C++ core and aims to provide a mobile-first alternative to SQLite.
You can learn it with this link:
How to use Realm for Android like a champ, and how to tell if you’re doing it wrong
5) ETC
There is some other types like File (read/write) and greenDao. You can learn them by just simple googling :)
add a comment |
You have many options:
1) SQLiteOpenHeleper:
You can store data into SQLite database with SQLiteOpenHelper class.
for a simple implementation watch this link :
Android SQLite Example
2) Room Library: (Recommended)
This is a great library written by google that provides an abstraction layer over SQLite to allow for more robust database access while harnessing the full power of SQLite.
for a simple implemantation watch this links:
A Beginner’s Guide to the Room Persistence Library
Room Persistence Library
3) Shared Prefrences:
If you have a simple data you can store it via Shared Prefrences. it is not a database though. Shared Preferences allow you to save and retrieve data in the form of key,value pair inside xml files in device data folder.
for a simple implementation watch this:
How to use SharedPreferences in Android to store, fetch and edit values
4) Realm:
Realm is a mobile database and a replacement for SQLite. Realm is not using SQLite as it’s engine. Instead it has own C++ core and aims to provide a mobile-first alternative to SQLite.
You can learn it with this link:
How to use Realm for Android like a champ, and how to tell if you’re doing it wrong
5) ETC
There is some other types like File (read/write) and greenDao. You can learn them by just simple googling :)
add a comment |
You have many options:
1) SQLiteOpenHeleper:
You can store data into SQLite database with SQLiteOpenHelper class.
for a simple implementation watch this link :
Android SQLite Example
2) Room Library: (Recommended)
This is a great library written by google that provides an abstraction layer over SQLite to allow for more robust database access while harnessing the full power of SQLite.
for a simple implemantation watch this links:
A Beginner’s Guide to the Room Persistence Library
Room Persistence Library
3) Shared Prefrences:
If you have a simple data you can store it via Shared Prefrences. it is not a database though. Shared Preferences allow you to save and retrieve data in the form of key,value pair inside xml files in device data folder.
for a simple implementation watch this:
How to use SharedPreferences in Android to store, fetch and edit values
4) Realm:
Realm is a mobile database and a replacement for SQLite. Realm is not using SQLite as it’s engine. Instead it has own C++ core and aims to provide a mobile-first alternative to SQLite.
You can learn it with this link:
How to use Realm for Android like a champ, and how to tell if you’re doing it wrong
5) ETC
There is some other types like File (read/write) and greenDao. You can learn them by just simple googling :)
You have many options:
1) SQLiteOpenHeleper:
You can store data into SQLite database with SQLiteOpenHelper class.
for a simple implementation watch this link :
Android SQLite Example
2) Room Library: (Recommended)
This is a great library written by google that provides an abstraction layer over SQLite to allow for more robust database access while harnessing the full power of SQLite.
for a simple implemantation watch this links:
A Beginner’s Guide to the Room Persistence Library
Room Persistence Library
3) Shared Prefrences:
If you have a simple data you can store it via Shared Prefrences. it is not a database though. Shared Preferences allow you to save and retrieve data in the form of key,value pair inside xml files in device data folder.
for a simple implementation watch this:
How to use SharedPreferences in Android to store, fetch and edit values
4) Realm:
Realm is a mobile database and a replacement for SQLite. Realm is not using SQLite as it’s engine. Instead it has own C++ core and aims to provide a mobile-first alternative to SQLite.
You can learn it with this link:
How to use Realm for Android like a champ, and how to tell if you’re doing it wrong
5) ETC
There is some other types like File (read/write) and greenDao. You can learn them by just simple googling :)
answered Jan 4 at 19:55
Saman SattariSaman Sattari
4822622
4822622
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54043423%2fresend-data-to-server-when-connection-is-back%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown