。为什么每一次投票都是消极的...对于android来说是新手;(。你的灵魂可以帮助其他人... 我有一个申请。在登录时,我想将数据存储到共享首选项。
我正在尝试将数据从服务器保存到Shared Preferences
。我正在从服务器成功接收数据
我试过,但有些错误
{"Login":"Success","Login Details":[{"name":"abc","place":"abcdd","cityname":"asdf"}]}
代码是:
public class login extends AsyncTask<Void, Void, Void> {
InputStream ins;
String status,details, result, s = null, data = "", js;
int ss;
int responseCode;
@Override
protected void onPreExecute() {
super.onPreExecute();
}
@Override
protected Void doInBackground(Void... params) {
StringBuilder sb = new StringBuilder();
ArrayList al;
try {
URL url =new URL(BuildConfig.url);
String param = "username=" + uname + "&password=" + pass2;
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("POST");
connection.setConnectTimeout(15000);
connection.setReadTimeout(15000);
connection.setDoInput(true);
connection.setDoOutput(true);
OutputStream os = connection.getOutputStream();
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(os, "UTF-8"));
bw.write(param);
bw.flush();
bw.close();
responseCode = connection.getResponseCode();
if (responseCode == HttpURLConnection.HTTP_OK) {
BufferedReader br = new BufferedReader(new InputStreamReader(connection.getInputStream()));
String line = "";
while ((line = br.readLine()) != null) {
sb.append(line + "\n");
}
}
data = sb.toString();
JSONObject json = new JSONObject(data);
status = json.getString("Login");
} catch (MalformedURLException e) {
Log.i("MalformedURLException", e.getMessage());
} catch (IOException e) {
Log.i("IOException", e.getMessage());
} catch (JSONException e) {
Log.i("JSONException", e.getMessage());
}
return null;
}
protected void onPostExecute(Void result) {
super.onPostExecute(result);
String status1 = status.trim();
if (status1.equals("Success")) {
try {
JSONObject jsonObject = new JSONObject(status1);
JSONArray array=jsonObject.getJSONArray("Login Details");
for (int i=0;i<array.length();i++){
jsonObject = array.getJSONObject(i);
name= jsonObject.getString("name");
place= jsonObject.getString("place");
cityname = jsonObject.getString("cityname");
}
} catch (JSONException e) {
e.printStackTrace();
}
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
SharedPreferences.Editor editor = sharedPreferences.edit();
editor.putString("name", name);
editor.putString("place", place);
editor.apply();
Toast.makeText(Login.this,name+":"+cityname+":"+mobileno,Toast.LENGTH_SHORT).show();
}
else {
Toast.makeText(Login.this, "Username or Password is Incorrect", Toast.LENGTH_LONG).show();
}
}
}
答案 0 :(得分:2)
你的JSONArray&#39;仅包含一个JSONObject和您的使用循环
QAbstractSocket
我希望你能理解它,这个提示对你有用 并且请在解析和打印中使用相同的变量
答案 1 :(得分:2)
首先status
不是一个json对象,它是一个字符串,确保你的doinbackground返回正确的结果,然后使用JSONObject jsonObject = new JSONObject(result);
而不是JSONObject jsonObject = new JSONObject(status1);