AVOS 데이터 유지.

1044 단어 OS
복잡 한 구조 데 이 터 를 AVOS 로 저장 합 니 다.
 
				AVOSCloud.initialize(getApplication(), APP_ID, APP_KEY);
				File parent=new File(Environment.getExternalStorageDirectory() + "/pic/");

				String filePath[]=parent.list();
				List<AVFile> fileList = new LinkedList<AVFile>();
				for (String string : filePath) {
					Log.e("parse", string);
					File localFile=new File(Environment.getExternalStorageDirectory() + "/pic/"+string);
					AVFile file = AVFile.withFile(string, localFile);
					fileList.add(file);
					AVObject parseObject = new AVObject("ls_pic");
					 parseObject.put("pic", file);
				    parseObject.saveInBackground();
				    Thread.sleep(10000);
				}
			    //    ,AVOS     
//				 AVObject parseObject = new AVObject("ls_pic");
//				    parseObject.addAll("file_array", fileList);
//				    parseObject.saveInBackground();

좋은 웹페이지 즐겨찾기