成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

Android——contentProvider(二)通過ContentResolver訪問

public class MyTest extends AndroidTestCase {

	public MyTest() {
		// TODO Auto-generated constructor stub
	}

	public void insert() {
		// 訪問內(nèi)容提供者的步驟:
		// 1、需要一個內(nèi)容解析者
		ContentResolver contentResolver = getContext().getContentResolver();
		// 使用content://+授權(quán)路徑
		Uri url = Uri
				.parse("content://com.example.android_contentprovider2.StudentProvider/student");
		ContentValues values = new ContentValues();
		values.put("name", "王五");
		values.put("address", "廣西");
		contentResolver.insert(url, values);
	}

	public void delete() {
		ContentResolver contentResolver = getContext().getContentResolver();
		// 刪除單行記錄,如果要刪除多行記錄:content://com.example.android_contentprovider2.StudentProvider/student
		Uri uri = Uri
				.parse("content://com.example.android_contentprovider2.StudentProvider/student/1");
		contentResolver.delete(uri, null, null);
	}

	public void update() {
		ContentResolver contentResolver = getContext().getContentResolver();
		Uri uri = Uri
				.parse("content://com.example.android_contentprovider2.StudentProvider/student/2");
		ContentValues values = new ContentValues();
		values.put("name", "李斯");
		values.put("address", "上海");
		contentResolver.update(uri, values, null, null);
	}

	public void query() {
		ContentResolver contentResolver = getContext().getContentResolver();
		// 查詢單條記錄:content://com.example.android_contentprovider2.StudentProvider/student/2
		// 查詢多條記錄:content://com.example.android_contentprovider2.StudentProvider/student
		Uri uri = Uri
				.parse("content://com.example.android_contentprovider2.StudentProvider/student");
		// select * from student where id = 2;
		Cursor cursor = contentResolver.query(uri, null, null, null, null);
		while (cursor.moveToNext()) {
			System.out.println("---->>"
					+ cursor.getString(cursor.getColumnIndex("name")));
		}
	}
}

成都創(chuàng)新互聯(lián)公司公司2013年成立,先為宜黃等服務(wù)建站,宜黃等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為宜黃企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。

附件:http://down.51cto.com/data/2364448

分享標(biāo)題:Android——contentProvider(二)通過ContentResolver訪問
鏈接分享:http://jinyejixie.com/article44/pshphe.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供軟件開發(fā)App設(shè)計(jì)、建站公司網(wǎng)頁設(shè)計(jì)公司、定制網(wǎng)站、電子商務(wù)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設(shè)公司
莱芜市| 灌云县| 赣州市| 长宁县| 赣榆县| 华坪县| 怀仁县| 新邵县| 腾冲县| 青川县| 彭州市| 安远县| 金山区| 桃园县| 连南| 霍城县| 永兴县| 锡林浩特市| 博罗县| 巴林左旗| 廊坊市| 辰溪县| 长汀县| 四会市| 五常市| 招远市| 昌吉市| 嘉义市| 新绛县| 丰镇市| 瑞安市| 本溪市| 新绛县| 册亨县| 措勤县| 嘉禾县| 平舆县| 建德市| 清河县| 新丰县| 辉县市|