1단계: 페이지에서 JSON 데이터를 반환합니다.
이 스페이스 블로그 "PHP 및 AJAX의 간단한 구현"의 json.php 코드를 몇 가지 간단하게 수정합니다. 코드는 다음과 같습니다. echo $_GET['jsoncallback'].'(' .custom_json::encode( $big_test).')';
echo로 변경 $_GET['jsoncallback'].custom_json::encode($big_test);
파일을 다음 이름으로 저장 jsondata.php.
2단계: Android 코드를 작성합니다.
1. Contact 클래스를 작성하고 set 및 get 메소드를 설정합니다.
package com.domain;
공용 클래스 연락처 {
비공개 문자열 이름
비공개 int 섹스
🎜>private boolean is_human;
private String string;
public Contact() { }
public Contact(문자열 이름, int age, int sex, 이중 높이,
부울 is_human, String string) {
this.name = name;
this.sex = sex
this.is_human = is_human ;
this.string = string;
}
public String getName() {
반환 이름
}
public void setName(문자열 이름) this.name = 이름;
}
public int getAge() {
나이 반환
}
public void setAge(int age) {
this .age = 연령
}
public int getSex() {
return sex
}
public void setSex(int sex) {
this.sex = sex;
public Double getHeight() {
return height
}
public void setHeight(Double height) {
this .height = height;
}
public boolean isIs_human() {
return is_human;
}
public void setIs_human(boolean is_human) {
이것입니다. is_human = is_human
}
public String getString() {
return string;
}
public void setString(String string) {
this.string = string ;
}
}
2. 입력 스트림 처리 도구 클래스 StreamTools를 작성합니다.
package com.shao.utils;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
public class StreamTools {
public static byte[] readInputStream(InputStream instream)은 예외를 발생시킵니다.
ByteArrayOutputStream outstream = new ByteArrayOutputStream();
byte[] buf = new byte[1024]; int len
while( (len = instream.read(buf)) != -1)
{
outstream.write(buf, 0, len)
}
byte[] data = outstream.toByteArray () ;//웹페이지의 바이너리 데이터
outstream.close();
instream.close()
return data
}
3. 안드로이드 레이아웃 파일 main.xml을 작성합니다.
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
android:layout_width="100dip"
android:layout_height="wrap_content"
/>
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
새 레이아웃 파일 항목 .xml.
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
android:layout_width="100dip"
android:layout_height="wrap_content"
/>
android:layout_width="100dip"
android:layout_height="wrap_content"
/>
android:layout_width="100dip"
android:layout_height="wrap_content"
/>
android:layout_width="100dip"
android:layout_height="wrap_content"
/>
android:layout_width="100dip"
android:layout_height="wrap_content"
/>
android:layout_width="100dip"
android:layout_height="wrap_content"
/>
withstring.xml添加如下一行:
4.编写业务实现类。
package com.shao;
java.io.InputStream 가져오기;
java.net.HttpURLConnection 가져오기;
java.net.URL 가져오기;
java.util.ArrayList 가져오기;
java.util.List 가져오기;
org.json.JSONArray 가져오기;
org.json.JSONObject 가져오기;
com.domain.Contact 가져오기;
com.shao.utils.StreamTools 가져오기;
공용 클래스 MyService {
공용 정적 목록
{
문자열 경로 = "http://192.168.1.100:8080/WebContent/testjson/jsondata.php";
목록<연락처> contact = new ArrayList
URL url = 새 URL(경로);
HttpURLConnection conn = (HttpURLConnection)url.openConnection();
conn.setConnectTimeout(5*1000);
conn.setRequestMethod("GET");
InputStream 인스트림 = conn.getInputStream();
byte[] data = StreamTools.readInputStream(instream);
문자열 json = 새 문자열(데이터);
JSONArray 배열 = new JSONArray(json);
for(int i=0;i
JSONObject item = array.getJSONObject(i);
연락처 연락처 = new Contact(item.getString("name"),item.getInt("age"),item.getInt("sex"),item.getDouble("height"),item.getBoolean(" is_human"),item.getString("string"));
Contacts.add(contact);
}
연락처 반환
}
}
5.编写主Activity类。
package com.shao;
java.util.ArrayList 가져오기;
java.util.HashMap 가져오기;
java.util.List 가져오기;
com.domain.Contact 가져오기;
android.app.Activity 가져오기;
android.os.Bundle 가져오기;
android.util.Log 가져오기;
android.widget.ListView 가져오기;
android.widget.SimpleAdapter 가져오기;
android.widget.Toast 가져오기;
공개 클래스 TestXML은 Activity {
/**활동이 처음 생성될 때 호출됩니다.*/
@Override
public void onCreate(Bundle selectedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
{
목록<연락처> 연락처 = MyService.getLastContact();
List
ListView listview = (ListView)findViewById(R.id.listview);
for(연락처: 연락처)
{
HashMap
item.put("name", contact.getName());
item.put("sex",contact.getSex());
item.put("age", contact.getAge());
item.put("height", contact.getHeight());
item.put("is_human", contact.isIs_human());
item.put("string", contact.getString());
data.add(항목);
}
SimpleAdapter 어댑터 = new SimpleAdapter(this, 데이터, R.layout.item,
new String[]{" name","sex","age","height","is_human","string"},
new int[]{R.id.name, R.id.sex, R.id.age, R.id.height, R.id.is_human, R.id.string});
listview.setAdapter(어댑터);
} catch (Throwable e) {
Log.e("shao",e.toString());
Toast.makeText(this, R.string.error, 1).show();
}
}
}
6.开启访问网络功能 。
步骤三 测试。