我正在尝试构建一个应用,该应用将患者ID作为共享首选项,并在另一个活动中使用该ID来获取该ID的记录。在主要活动中,我设置了“共享首选项”,并且它正确设置了该值。但是,在FetchSinglePatientData中,我无法获得相同的共享首选项值。
P.S:在发生此错误之前,我什么都没得到。我的代码如下:
public void getSinglePatient(View v)
{
etID = findViewById(R.id.editTextID);
SharedPreferences sharedPref = getSharedPreferences("patientId", Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sharedPref.edit();
editor.putString("patientId",etID.getText().toString());
editor.apply();
String xx = sharedPref.getString("patientId","hayamk");
Log.d("XX","DEGER" + xx);
//instantiate intent class
Intent intent=new Intent(MainActivity.this, GetSinglePatient.class);
//start the activity
startActivity(intent);
}
GetSinglePatient活动,此活动在background.fetchSinglePatientData中使用fetchSinglePatientData,如下所示:
package project.android.mapd713.college.centennial.com.mapd713application;
import android.content.Context;
import android.content.SharedPreferences;
import android.os.AsyncTask;
import android.preference.PreferenceManager;
import android.util.Log;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
public class fetchSinglePatientData extends AsyncTask<Void,Void,Void> {
String data = "";
String dataParsed = "";
String singleParsed = "";
JSONObject myObject;
private Context ctx;
public fetchSinglePatientData(Context ctx) {
this.ctx = ctx;
}
@Override
protected Void doInBackground(Void... voids) {
SharedPreferences sharedPref = PreferenceManager.getDefaultSharedPreferences(ctx);
//String patientId = prefs.getString("patientId", "");
String xx = sharedPref.getString("patientId","fafafa");
Log.d("XX2","DEGE2R" + xx);
Log.i("fonksiyon","ICINE GIRDI");
try {
URL url = new URL("https://mapd713prjct.herokuapp.com/patients/5bf63c770fc33ea59c9c3a97");
Log.i("URL","URL ICINE GIRDI");
HttpURLConnection httpURLConnection = (HttpURLConnection) url.openConnection();
InputStream inputStream = httpURLConnection.getInputStream();
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(inputStream));
String line = "";
while(line != null) {
line = bufferedReader.readLine();
data = data + line;
}
myObject = new JSONObject(data);
myObject.getString("doctor");
Log.d("DOKTOR BU NE","hmm" + myObject.getString("doctor"));
} catch (MalformedURLException e) {
e.printStackTrace();
System.out.print("HATA 1: " + e);
} catch (IOException e) {
e.printStackTrace();
System.out.print("HATA 2: " + e);
} catch (JSONException e) {
e.printStackTrace();
System.out.print("HATA 3: " + e);
}
return null;
}
@Override
protected void onPostExecute(Void aVoid) {
super.onPostExecute(aVoid);
System.out.println("girdi");
Log.i("onPostExecute","GIRDI");
GetSinglePatient.mTextViewResult.setText(myObject.toString());
}
}
日志如下所示,有两个不同的输入,1)jajaja和2)hehehe
2018-12-01 22:38:12.360 7470-7470/project.android.mapd713.college.centennial.com.mapd713application D/XX: DEGERjajaja
2018-12-01 22:38:12.816 7470-
7497/project.android.mapd713.college.centennial.com.mapd713application D/XX2: DEGE2Rfafafa
2018-12-01 22:43:05.644 7470-7470/project.android.mapd713.college.centennial.com.mapd713application D/XX: DEGERhehehe
2018-12-01 22:43:05.815 7470-7547/project.android.mapd713.college.centennial.com.mapd713application D/XX2: DEGE2Rfafafa
非常感谢您!
答案 0 :(得分:0)
您正在使用两种不同的方法来获取SharedPreferences对象。首先,您使用带有首选项文件名的Context.getSharedPreferences()方法。然后,您使用静态方法PreferenceManager.getDefaultSharedPreferences()。这将导致使用两个不同的SharedPreference文件。只需选择一种方法并保持一致,它应该会更好。
答案 1 :(得分:0)
为解决此问题,请使用具有定义名称和模式的共享首选项。对于 例如:
SharedPreferences SharedPreference = context.getSharedPreferences("defined
name" , Context.MODE_PRIVATE);
- 要以共享的偏好插入数据而没有任何延迟,请使用commit()而不是apply()
editor.commit();
- 并将ApplicationContext发送到您的asynctask类
答案 2 :(得分:0)
我通过更改以下代码解决了我的问题:
SharedPreferences sharedPref = getSharedPreferences("patientId", Context.MODE_PRIVATE);
使用
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
是的,我确实使用了两种不同的SharedPreference方法,因此无法获得患者ID。但是,更改
SharedPreferences sharedPref = PreferenceManager.getDefaultSharedPreferences(ctx);
使用
SharedPreferences sharedPref = getSharedPreferences("patientId", Context.MODE_PRIVATE);
不起作用,因为getSharedPreferences()需要访问上下文。
我认为,Android有点棘手。我建议那些帖子: