本文整理汇总了Java中com.avos.avoscloud.AVFile.save方法的典型用法代码示例。如果您正苦于以下问题:Java AVFile.save方法的具体用法?Java AVFile.save怎么用?Java AVFile.save使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.avos.avoscloud.AVFile
的用法示例。
在下文中一共展示了AVFile.save方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: saveUserIcon
import com.avos.avoscloud.AVFile; //导入方法依赖的package包/类
/**
* 保存文件
*
* @param path
* @return
* @throws AVException
* @throws FileNotFoundException
*/
public static String saveUserIcon(String path) throws AVException, FileNotFoundException {
String mUser = PreferenceUtils.getString(Config.KEY_USER, "", MyApplication.context);
AVFile file = AVFile.withAbsoluteLocalPath(mUser + ".jpg", path);
file.save();
AVQuery<AVObject> query = new AVQuery<>("mUser");
query.whereEqualTo("user_tel", mUser);
AVObject user = query.getFirst();
user.put("user_icon", file.getObjectId());
user.save();
return file.getObjectId();
}
示例2: saveUserIconById
import com.avos.avoscloud.AVFile; //导入方法依赖的package包/类
/**
* 通过id保存用户icon
*
* @param path
* @return
* @throws AVException
* @throws FileNotFoundException
*/
public static String saveUserIconById(String path) throws AVException, FileNotFoundException {
String mUser = PreferenceUtils.getString(Config.KEY_USER, "", MyApplication.context);
AVFile file = AVFile.withObjectId(PreferenceUtils.getString(Config.KEY_USERICON, "", MyApplication.context));
file.delete();
AVFile newFile = AVFile.withAbsoluteLocalPath(mUser + ".jpg", path);
newFile.save();
AVQuery<AVObject> query = new AVQuery<>("mUser");
query.whereEqualTo("user_tel", mUser);
AVObject user = query.getFirst();
user.put("user_icon", newFile.getObjectId());
user.save();
return newFile.getObjectId();
}
示例3: upload
import com.avos.avoscloud.AVFile; //导入方法依赖的package包/类
public void upload() throws IOException, AVException {
if (msg.getType() != Msg.Type.Audio && msg.getType() != Msg.Type.Image) {
return;
}
String objectId = msg.getObjectId();
if (objectId == null) {
throw new NullPointerException("objectId mustn't be null");
}
String filePath = PathUtils.getChatFilePath(objectId);
AVFile file = AVFile.withAbsoluteLocalPath(objectId, filePath);
file.save();
String url = file.getUrl();
msg.setContent(url);
}