সম্পাদনা 2 (অক্টোবর 2017):
এটি 2017 Just কেবল retrofit ব্যবহার করুন। অন্য কিছু ব্যবহার করার প্রায় কোনও কারণ নেই।
সম্পাদনা করুন:
মূল উত্তরটি এই সম্পাদনার সময় দেড় বছরেরও বেশি পুরানো। যদিও মূল উত্তরে উপস্থাপিত ধারণাগুলি এখনও রয়েছে, অন্য উত্তরগুলি যেমন উল্লেখ করেছে, এখন সেখানে গ্রন্থাগারগুলি রয়েছে যা আপনার পক্ষে এই কাজটি আরও সহজ করে তোলে। আরও গুরুত্বপূর্ণ, এই লাইব্রেরির কয়েকটি আপনার জন্য ডিভাইস কনফিগারেশন পরিবর্তনগুলি পরিচালনা করে।
মূল উত্তরটি রেফারেন্সের জন্য নীচে ধরে রাখা হয়েছে। তবে দয়া করে অ্যান্ড্রয়েডের জন্য বিশ্রামের কিছু ক্লায়েন্ট লাইব্রেরি পরীক্ষা করে দেখুন যে সেগুলি আপনার ব্যবহারের ক্ষেত্রে ফিট করে। নীচে আমি মূল্যায়ন করেছি কিছু লাইব্রেরির একটি তালিকা। এটি কোনও উপায়ে সম্পূর্ণ তালিকা হওয়ার উদ্দেশ্যে নয়।
আসল উত্তর:
Android এ REST ক্লায়েন্ট থাকার বিষয়ে আমার দৃষ্টিভঙ্গি উপস্থাপন করছি। যদিও আমি এটি সর্বোত্তম বলে দাবি করি না :) এছাড়াও নোট করুন যে এটি আমার প্রয়োজনের প্রতিক্রিয়া হিসাবে আমি নিয়ে এসেছি। আপনার ব্যবহারের ক্ষেত্রে এটির দাবি থাকলে আপনার আরও স্তর থাকতে পারে / আরও জটিলতা যুক্ত করতে পারে। উদাহরণস্বরূপ, আমার কাছে স্থানীয় সঞ্চয় নেই have কারণ আমার অ্যাপ্লিকেশনটি কয়েকটি REST প্রতিক্রিয়া হ্রাস সহ্য করতে পারে।
আমার পদ্ধতির AsyncTask
প্রচ্ছদের নীচে কেবল এস ব্যবহার করে । আমার ক্ষেত্রে, আমি আমার Activity
উদাহরণ থেকে এই কার্যগুলি "কল" করি ; তবে স্ক্রিন রোটেশনের মতো ক্ষেত্রে পুরোপুরি অ্যাকাউন্ট করার জন্য আপনি এগুলি Service
বা অন্য কোনও থেকে কল করতে পছন্দ করতে পারেন ।
আমি সচেতনভাবে একটি এপিআই হতে আমার REST ক্লায়েন্টকে বেছে নিয়েছি। এর অর্থ হ'ল যে অ্যাপ্লিকেশনটি আমার আরএসটি ক্লায়েন্ট ব্যবহার করে তাদের এমনকি বাস্তব আরএসএল ইউআরএল এবং ব্যবহৃত ডেটা ফর্ম্যাট সম্পর্কে সচেতন হওয়া প্রয়োজন।
ক্লায়েন্টের 2 স্তর থাকবে:
শীর্ষ স্তর: এই স্তরটির উদ্দেশ্য এমন পদ্ধতিগুলি সরবরাহ করা যা REST API এর কার্যকারিতা আয়না করে। উদাহরণস্বরূপ, আপনার আরএসটি এপিআইতে প্রতিটি URL এর সাথে সম্পর্কিত আপনার একটি জাভা পদ্ধতি থাকতে পারে (বা দুটিও - জিইটিগুলির জন্য একটি এবং পিওএসটিগুলির জন্য একটি)।
এটি REST ক্লায়েন্ট API এ প্রবেশের পয়েন্ট। এটি অ্যাপ্লিকেশনটি সাধারণত ব্যবহার করবে এমন স্তর। এটি সিঙ্গলটন হতে পারে, তবে অগত্যা নয়।
REST কলের প্রতিক্রিয়া এই স্তরটি একটি POJO এ পার্স করে অ্যাপে ফিরে আসে।
এটি নীচের স্তরের AsyncTask
স্তর, যা HTTP ক্লায়েন্ট পদ্ধতিগুলি ব্যবহার করে প্রকৃতপক্ষে চলে যায় এবং সেই REST কল করতে পারে।
তদ্ব্যতীত, AsyncTask
এস এর ফলাফল অ্যাপ্লিকেশনটিতে যোগাযোগ করার জন্য আমি একটি কলব্যাক প্রক্রিয়া ব্যবহার করতে পছন্দ করেছি।
পাঠ্য যথেষ্ট। আসুন এখন কিছু কোড দেখুন। একটি হাইপোটিকাল REST এআইপিআইআরএল নিতে দেয় - http://myhypothetalapi.com/user/profile ile
উপরের স্তরটি দেখতে দেখতে এটির মতো হতে পারে:
/**
* Entry point into the API.
*/
public class HypotheticalApi{
public static HypotheticalApi getInstance(){
//Choose an appropriate creation strategy.
}
/**
* Request a User Profile from the REST server.
* @param userName The user name for which the profile is to be requested.
* @param callback Callback to execute when the profile is available.
*/
public void getUserProfile(String userName, final GetResponseCallback callback){
String restUrl = Utils.constructRestUrlForProfile(userName);
new GetTask(restUrl, new RestTaskCallback (){
@Override
public void onTaskComplete(String response){
Profile profile = Utils.parseResponseAsProfile(response);
callback.onDataReceived(profile);
}
}).execute();
}
/**
* Submit a user profile to the server.
* @param profile The profile to submit
* @param callback The callback to execute when submission status is available.
*/
public void postUserProfile(Profile profile, final PostCallback callback){
String restUrl = Utils.constructRestUrlForProfile(profile);
String requestBody = Utils.serializeProfileAsString(profile);
new PostTask(restUrl, requestBody, new RestTaskCallback(){
public void onTaskComplete(String response){
callback.onPostSuccess();
}
}).execute();
}
}
/**
* Class definition for a callback to be invoked when the response data for the
* GET call is available.
*/
public abstract class GetResponseCallback{
/**
* Called when the response data for the REST call is ready. <br/>
* This method is guaranteed to execute on the UI thread.
*
* @param profile The {@code Profile} that was received from the server.
*/
abstract void onDataReceived(Profile profile);
/*
* Additional methods like onPreGet() or onFailure() can be added with default implementations.
* This is why this has been made and abstract class rather than Interface.
*/
}
/**
*
* Class definition for a callback to be invoked when the response for the data
* submission is available.
*
*/
public abstract class PostCallback{
/**
* Called when a POST success response is received. <br/>
* This method is guaranteed to execute on the UI thread.
*/
public abstract void onPostSuccess();
}
নোট করুন যে অ্যাপ্লিকেশনটি REST এপিআই দ্বারা সরাসরি জেএসএন বা এক্সএমএল (বা অন্য যে কোনও ফর্ম্যাট) ব্যবহার করে না। পরিবর্তে, অ্যাপ্লিকেশনটি কেবল সিম দেখায় Profile
।
তারপরে, নিম্ন স্তরটি (অ্যাসিঙ্কটাস্ক স্তর) দেখতে দেখতে এটি দেখতে পারা যায়:
/**
* An AsyncTask implementation for performing GETs on the Hypothetical REST APIs.
*/
public class GetTask extends AsyncTask<String, String, String>{
private String mRestUrl;
private RestTaskCallback mCallback;
/**
* Creates a new instance of GetTask with the specified URL and callback.
*
* @param restUrl The URL for the REST API.
* @param callback The callback to be invoked when the HTTP request
* completes.
*
*/
public GetTask(String restUrl, RestTaskCallback callback){
this.mRestUrl = restUrl;
this.mCallback = callback;
}
@Override
protected String doInBackground(String... params) {
String response = null;
//Use HTTP Client APIs to make the call.
//Return the HTTP Response body here.
return response;
}
@Override
protected void onPostExecute(String result) {
mCallback.onTaskComplete(result);
super.onPostExecute(result);
}
}
/**
* An AsyncTask implementation for performing POSTs on the Hypothetical REST APIs.
*/
public class PostTask extends AsyncTask<String, String, String>{
private String mRestUrl;
private RestTaskCallback mCallback;
private String mRequestBody;
/**
* Creates a new instance of PostTask with the specified URL, callback, and
* request body.
*
* @param restUrl The URL for the REST API.
* @param callback The callback to be invoked when the HTTP request
* completes.
* @param requestBody The body of the POST request.
*
*/
public PostTask(String restUrl, String requestBody, RestTaskCallback callback){
this.mRestUrl = restUrl;
this.mRequestBody = requestBody;
this.mCallback = callback;
}
@Override
protected String doInBackground(String... arg0) {
//Use HTTP client API's to do the POST
//Return response.
}
@Override
protected void onPostExecute(String result) {
mCallback.onTaskComplete(result);
super.onPostExecute(result);
}
}
/**
* Class definition for a callback to be invoked when the HTTP request
* representing the REST API Call completes.
*/
public abstract class RestTaskCallback{
/**
* Called when the HTTP request completes.
*
* @param result The result of the HTTP request.
*/
public abstract void onTaskComplete(String result);
}
এখানে কোনও অ্যাপ্লিকেশন কীভাবে এপিআই ব্যবহার করতে পারে (একটিতে Activity
বা Service
):
HypotheticalApi myApi = HypotheticalApi.getInstance();
myApi.getUserProfile("techie.curious", new GetResponseCallback() {
@Override
void onDataReceived(Profile profile) {
//Use the profile to display it on screen, etc.
}
});
Profile newProfile = new Profile();
myApi.postUserProfile(newProfile, new PostCallback() {
@Override
public void onPostSuccess() {
//Display Success
}
});
আমি আশা করি মন্তব্যগুলি নকশাটি ব্যাখ্যা করার জন্য যথেষ্ট; তবে আমি আরও তথ্য সরবরাহ করে খুশি হব।