- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我得到了一个项目:请阅读它
[ { "slot":"A", "name":"Dummy Subject 1", "code":"SCD1", "class number":"12345", "total students": "67"}, { "slot":"B", "name":"Dummy Subject 2", "code":"SCD2", "class number":"12346", "total students": "29"}, { "slot":"C", "name":"Dummy Subject 3", "code":"SCD3", "class number":"12347", "total students": "41"}, { "slot":"D", "name":"Dummy Subject 4", "code":"SCD4", "class number":"12348", "total students": "65"}, { "slot":"E", "name":"Dummy Subject 5", "code":"SCD5", "class number":"12349", "total students": "55"} ]
示例 JSON 数据,其中包含 5 个虚拟主题的信息以及与每个主题相关的信息。下载此 JSON 数据,根据您的意愿从中解析信息并存储在共享首选项中。以名称和代码作为标题显示在 ExpandableListView 中。在展开时,显示它的其他细节。
#json_parse_class.java
package com.office.tracker;
// Nikhil Verma 13BCE0037 9787029484 L-217
import java.io.IOException;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.util.EntityUtils;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import android.app.Activity;
import android.content.Context;
import android.content.SharedPreferences;
import android.os.AsyncTask;
import android.os.Bundle;
import android.widget.TextView;
import android.widget.Toast;
public class json_dpa extends Activity {
HttpClient client;
JSONObject dummy1;
SharedPreferences json_spref;;
String[] datas = null;
TextView tv;
public static String s1="Default^Default^Default^Default^Default^Default^Default^Default^" +
"Default^Default^Default^Default^Default^Default^Default^Default^" +
"Default^Default^Default^Default^Default^Default^Default^Default^Default";
private static final String SLOT = "slot";
static final String NAME = "name";
static final String CODE = "code";
static final String ClASS_NUMBER = "cno.";
static final String TOTAL_STUDENTS = "ts";
static final String TOTAL = "t";
SharedPreferences.Editor editor;
public static int ob_counter = 0;
public String deta[] = null;
private static final String PREFS_NAME = "json_prefname";
int count = 0;
final static String URL = "http://www.gdgvitvellore.com/samplejson/";
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.json);
client = new DefaultHttpClient();
tv = (TextView) findViewById(R.id.json_id);
json_spref = getSharedPreferences(PREFS_NAME, 0);
// this.ob_counter = counter;
String[] index = { "slot", "name", "code", "class number",
"total students" };
new getdata().execute(index);
}
public int async(int counter)
{
this.ob_counter = counter;
return 0;
}
public JSONObject gdg(int r) throws ClientProtocolException, IOException,
JSONException {
ob_counter=r;
HttpGet get = new HttpGet(URL);
HttpResponse rtr = client.execute(get);
int status = rtr.getStatusLine().getStatusCode();
if (status == 200) {
HttpEntity e = rtr.getEntity();
String data = EntityUtils.toString(e);
JSONArray detail = new JSONArray(data);
JSONObject dummy = detail.getJSONObject(ob_counter);
return dummy;
} else {
Toast.makeText(json_dpa.this, "Error ", Toast.LENGTH_LONG);
return null;
}
}
public class getdata extends AsyncTask<String, Integer, String> {
protected String doInBackground(String... params) {
try {
dummy1 = gdg(0);
String mystr1 = dummy1.getString(params[0]);
String mystr2 = dummy1.getString(params[1]);
String mystr3 = dummy1.getString(params[2]);
String mystr4 = dummy1.getString(params[3]);
String mystr5 = dummy1.getString(params[4]);
dummy1=null;
dummy1 = gdg(1);
String mystr6 = dummy1.getString(params[0]);
String mystr7 = dummy1.getString(params[1]);
String mystr8 = dummy1.getString(params[2]);
String mystr9 = dummy1.getString(params[3]);
String mystr10 = dummy1.getString(params[4]);
dummy1=null;
dummy1 = gdg(2);
String mystr11 = dummy1.getString(params[0]);
String mystr12 = dummy1.getString(params[1]);
String mystr13 = dummy1.getString(params[2]);
String mystr14 = dummy1.getString(params[3]);
String mystr15 = dummy1.getString(params[4]);
dummy1=null;
dummy1 = gdg(3);
String mystr16 = dummy1.getString(params[0]);
String mystr17 = dummy1.getString(params[1]);
String mystr18 = dummy1.getString(params[2]);
String mystr19 = dummy1.getString(params[3]);
String mystr20 = dummy1.getString(params[4]);
dummy1=null;
dummy1 = gdg(4);
String mystr21 = dummy1.getString(params[0]);
String mystr22 = dummy1.getString(params[1]);
String mystr23 = dummy1.getString(params[2]);
String mystr24 = dummy1.getString(params[3]);
String mystr25 = dummy1.getString(params[4]);
editor = json_spref.edit();
editor.putString(SLOT, mystr1);
editor.putString(NAME, mystr2);
editor.putString(CODE, mystr3);
editor.putString(ClASS_NUMBER, mystr4);
editor.putString(TOTAL_STUDENTS, mystr5);
editor.putString(TOTAL, mystr1+"^"+mystr2+"^"+mystr3+"^"+mystr4+"^"+mystr5+"^"+mystr6+"^"+mystr7
+"^"+mystr8+"^"+mystr9+"^"+mystr10+"^"+mystr11+"^"+mystr12+"^"+mystr13+"^"+mystr14+"^"+mystr15
+"^"+mystr16+"^"+mystr17+"^"+mystr18+"^"+mystr19+"^"+mystr20+"^"+mystr21+"^"+mystr22
+"^"+mystr23+"^"+mystr24+"^"+mystr25);
editor.commit();
return mystr1;
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (JSONException e) {
e.printStackTrace();
}
return null;
}
protected void onPostExecute(String result) {
s1 = json_spref.getString(TOTAL, "defaut Slot");
tv.setText(s1);
}
}
}
list_main class.java
package com.office.tracker;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.View;
import android.view.Window;
import android.view.WindowManager;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.ExpandableListView;
public class json_list_main extends Activity implements OnClickListener
{ // Nikhil Verma 13BCE0037 9787029484 L-217
ExpandableListView elv;
Button but;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.json_exp_list);
elv=(ExpandableListView) findViewById(R.id.json_exp_listID);
but=(Button) findViewById(R.id.list_button);
but.setOnClickListener(this);
//json_dpa ob=new json_dpa();
//ob.async(0);
//String s1=ob.json_spref.getString(ob.NAME, "defaut Slot");
elv.setAdapter(new json_exp_list_view(this));
}
public boolean onCreateOptionsMenu(Menu menu) {
// TODO Auto-generated method stub
super.onCreateOptionsMenu(menu);
MenuInflater mf = getMenuInflater();
mf.inflate(R.menu.cool_menu, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// TODO Auto-generated method stub
switch (item.getItemId()) {
case R.id.aboutus:
Intent rob = new Intent("com.office.tracker.ABOUTUS");
startActivity(rob);
break;
// case R.id.preferences:
//Intent roby = new Intent("com.office.tracker.PREFS");
//startActivity(roby);
//break;
case R.id.exit:
finish();
break;
}
return false;
}
public void onClick(View v) {
if(v.getId()==R.id.list_button){
Intent rob = new Intent("com.office.tracker.JSON_DPA");
startActivity(rob);
}
}
}
custom adapter class.java
package com.office.tracker;
import android.content.Context;
import android.graphics.Color;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseExpandableListAdapter;
import android.widget.TextView;
public class json_exp_list_view extends BaseExpandableListAdapter {
private Context context;
int i=0;
json_dpa ob=new json_dpa();
String ret=ob.s1;
String i1="Slot -";
String i2="Name -";
String i3="Code -";
String i4="Class No. -";
String i5="Total Students -";
String[] splitArray = ret.split("\\^");//split whenever at least one whitespace is encountered
//String s1=ob.json_spref.getString(ob.NAME, "defaut Slot");
//json_dpa ob=new json_dpa();
//String name1=ob.name_ret();
//String code1=ob.code_ret();
String[] parent={i2+splitArray[1]+" , "+i3+splitArray[2],i2+splitArray[6]+" , "+i3+splitArray[7],i2+splitArray[11]+" , "+i3+splitArray[12]
,i2+splitArray[16]+" , "+i3+splitArray[17],i2+splitArray[21]+" , "+i3+splitArray[22]};
String[][] child={{i1+splitArray[0],i4+splitArray[3],splitArray[4]},
{i1+splitArray[5],i4+splitArray[8],i5+splitArray[9]}
,{i1+splitArray[10],i4+splitArray[13],i5+splitArray[14]},
{i1+splitArray[15],i4+splitArray[18],i5+splitArray[19]},
{i1+splitArray[20],i4+splitArray[23],i5+splitArray[24]}};
public json_exp_list_view(Context context) {
this.context=context;
}
@Override
public Object getChild(int arg0, int arg1) {
// TODO Auto-generated method stub
return null;
}
@Override
public long getChildId(int arg0, int arg1) {
// TODO Auto-generated method stub
return 0;
}
@Override
public View getChildView(int GroupPosition, int ChildPosition, boolean arg2, View arg3,
ViewGroup arg4) {
TextView tv=new TextView(context);
tv.setText(child[GroupPosition][ChildPosition]);
tv.setPadding(90, 15, 15, 15);
tv.setTextSize(25);
tv.setTextColor(Color.BLUE);
return tv;
}
@Override
public int getChildrenCount(int GroupPosition) {
// TODO Auto-generated method stub
return child[GroupPosition].length;
}
@Override
public Object getGroup(int GroupPosition) {
// TODO Auto-generated method stub
return GroupPosition;
}
@Override
public int getGroupCount() {
// TODO Auto-generated method stub
return parent.length;
}
@Override
public long getGroupId(int GroupPosition) {
// TODO Auto-generated method stub
return GroupPosition;
}
@Override
public View getGroupView(int GroupPosition, boolean arg1, View arg2, ViewGroup arg3) {
TextView tv=new TextView(context);
tv.setText(parent[GroupPosition]);
tv.setPadding(110, 15, 15, 15);
tv.setTextSize(27);
tv.setTextColor(Color.GREEN);
return tv;
}
@Override
public boolean hasStableIds() {
// TODO Auto-generated method stub
return false;
}
@Override
public boolean isChildSelectable(int arg0, int arg1) {
// TODO Auto-generated method stub
return true;
}
}
最佳答案
要将您的 JSON 字符串转换为对象,您需要执行以下操作:
转到以下链接并下载 GSON: https://code.google.com/p/google-gson/downloads/detail?name=google-gson-1.5-release.zip&can=4&q=
复制到你的项目中
创建表示主题列表的类
在需要将 JSON 转换为主题列表的地方,请在代码中执行以下操作:
//import the packeges
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
import com.tekpub.models.Production;
//type of objct we need to convert JSON string to
Type typeOfDest = new TypeToken<List<Subjects>>(){}.getType();
Gson gson = new Gson();
//return the object
return gson.fromJson(input, typeOfDest);
关于android - 通过fragment显示JSON数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25810618/
初学者 android 问题。好的,我已经成功写入文件。例如。 //获取文件名 String filename = getResources().getString(R.string.filename
我已经将相同的图像保存到/data/data/mypackage/img/中,现在我想显示这个全屏,我曾尝试使用 ACTION_VIEW 来显示 android 标准程序,但它不是从/data/dat
我正在使用Xcode 9,Swift 4。 我正在尝试使用以下代码从URL在ImageView中显示图像: func getImageFromUrl(sourceUrl: String) -> UII
我的 Ubuntu 安装 genymotion 有问题。主要是我无法调试我的数据库,因为通过 eclipse 中的 DBMS 和 shell 中的 adb 我无法查看/data/文件夹的内容。没有显示
我正在尝试用 PHP 发布一些 JSON 数据。但是出了点问题。 这是我的 html -- {% for x in sets %}
我观察到两种方法的结果不同。为什么是这样?我知道 lm 上发生了什么,但无法弄清楚 tslm 上发生了什么。 > library(forecast) > set.seed(2) > tts lm(t
我不确定为什么会这样!我有一个由 spring data elasticsearch 和 spring data jpa 使用的类,但是当我尝试运行我的应用程序时出现错误。 Error creatin
在 this vega 图表,如果我下载并转换 flare-dependencies.json使用以下 jq 到 csv命令, jq -r '(map(keys) | add | unique) as
我正在提交一个项目,我必须在其中创建一个带有表的 mysql 数据库。一切都在我这边进行,所以我只想检查如何将我所有的压缩文件发送给使用不同计算机的人。基本上,我如何为另一台计算机创建我的数据库文件,
我有一个应用程序可以将文本文件写入内部存储。我想仔细看看我的电脑。 我运行了 Toast.makeText 来显示路径,它说:/数据/数据/我的包 但是当我转到 Android Studio 的 An
我喜欢使用 Genymotion 模拟器以如此出色的速度加载 Android。它有非常好的速度,但仍然有一些不稳定的性能。 如何从 Eclipse 中的文件资源管理器访问 Genymotion 模拟器
我需要更改 Silverlight 中文本框的格式。数据通过 MVVM 绑定(bind)。 例如,有一个 int 属性,我将 1 添加到 setter 中的值并调用 OnPropertyChanged
我想向 Youtube Data API 提出请求,但我不需要访问任何用户信息。我只想浏览公共(public)视频并根据搜索词显示视频。 我可以在未经授权的情况下这样做吗? 最佳答案 YouTube
我已经设置了一个 Twilio 应用程序,我想向人们发送更新,但我不想回复单个文本。我只是想让他们在有问题时打电话。我一切正常,但我想在发送文本时显示传入文本,以确保我不会错过任何问题。我正在使用 p
我有一个带有表单的网站(目前它是纯 HTML,但我们正在切换到 JQuery)。流程是这样的: 接受用户的输入 --- 5 个整数 通过 REST 调用网络服务 在服务器端运行一些计算...并生成一个
假设我们有一个名为 configuration.js 的文件,当我们查看内部时,我们会看到: 'use strict'; var profile = { "project": "%Projec
这部分是对 Previous Question 的扩展我的: 我现在可以从我的 CI Controller 成功返回 JSON 数据,它返回: {"results":[{"id":"1","Sourc
有什么有效的方法可以删除 ios 中 CBL 的所有文档存储?我对此有疑问,或者,如果有人知道如何从本质上使该应用程序像刚刚安装一样,那也会非常有帮助。我们正在努力确保我们的注销实际上将应用程序设置为
我有一个 Rails 应用程序,它与其他 Rails 应用程序通信以进行数据插入。我使用 jQuery $.post 方法进行数据插入。对于插入,我的其他 Rails 应用程序显示 200 OK。但在
我正在为服务于发布请求的 API 调用运行单元测试。我正在传递请求正文,并且必须将响应作为帐户数据返回。但我只收到断言错误 注意:数据是从 Azure 中获取的 spec.js const accou
我是一名优秀的程序员,十分优秀!