本文整理汇总了Java中cn.bmob.im.util.BmobUtils类的典型用法代码示例。如果您正苦于以下问题:Java BmobUtils类的具体用法?Java BmobUtils怎么用?Java BmobUtils使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
BmobUtils类属于cn.bmob.im.util包,在下文中一共展示了BmobUtils类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getDownLoadFilePath
import cn.bmob.im.util.BmobUtils; //导入依赖的package包/类
public String getDownLoadFilePath(BmobMsg msg) {
String accountDir = BmobUtils.string2MD5(userManager
.getCurrentUserObjectId());
File dir = new File(BmobConfig.BMOB_VOICE_DIR + File.separator
+ accountDir + File.separator + msg.getBelongId());
if (!dir.exists()) {
dir.mkdirs();
}
// 在当前用户的目录下面存放录音文件
File audioFile = new File(dir.getAbsolutePath() + File.separator
+ msg.getMsgTime() + ".amr");
try {
if (!audioFile.exists()) {
audioFile.createNewFile();
}
} catch (IOException e) {
}
return audioFile.getAbsolutePath();
}
示例2: getDownLoadFilePath
import cn.bmob.im.util.BmobUtils; //导入依赖的package包/类
private String getDownLoadFilePath(BmobMsg msg) {
String accountDir = BmobUtils.string2MD5(userManager
.getCurrentUserObjectId());
File dir = new File(BmobConfig.BMOB_VOICE_DIR + File.separator
+ accountDir + File.separator + msg.getBelongId());
if (!dir.exists()) {
dir.mkdirs();
}
// �ڵ�ǰ�û���Ŀ¼������¼���ļ�
File audioFile = new File(dir.getAbsolutePath() + File.separator
+ msg.getMsgTime() + ".amr");
try {
if (!audioFile.exists()) {
audioFile.createNewFile();
}
} catch (IOException e) {
}
return audioFile.getAbsolutePath();
}
示例3: getDownLoadFilePath
import cn.bmob.im.util.BmobUtils; //导入依赖的package包/类
public String getDownLoadFilePath(BmobMsg msg) {
String accountDir = BmobUtils.string2MD5(userManager
.getCurrentUserObjectId());
File dir = new File(BmobConfig.BMOB_VOICE_DIR + File.separator
+ accountDir + File.separator + msg.getBelongId());
if (!dir.exists()) {
dir.mkdirs();
}
// 在当前用户的目录下面存放录音文件
File audioFile = new File(dir.getAbsolutePath() + File.separator
+ msg.getMsgTime() + ".amr");
try {
if (!audioFile.exists()) {
audioFile.createNewFile();
}
} catch (IOException e) {
}
return audioFile.getAbsolutePath();
}
示例4: getDownLoadFilePath
import cn.bmob.im.util.BmobUtils; //导入依赖的package包/类
public String getDownLoadFilePath(BmobMsg msg) {
String accountDir = BmobUtils.string2MD5(userManager
.getCurrentUserObjectId());
File dir = new File(BmobConfig.BMOB_VOICE_DIR + File.separator
+ accountDir + File.separator + msg.getBelongId());
if (!dir.exists()) {
dir.mkdirs();
}
// �ڵ�ǰ�û���Ŀ¼������¼���ļ�
File audioFile = new File(dir.getAbsolutePath() + File.separator
+ msg.getMsgTime() + ".amr");
try {
if (!audioFile.exists()) {
audioFile.createNewFile();
}
} catch (IOException e) {
}
return audioFile.getAbsolutePath();
}
示例5: getDownLoadFilePath
import cn.bmob.im.util.BmobUtils; //导入依赖的package包/类
public String getDownLoadFilePath(BmobMsg msg) {
String accountDir = BmobUtils.string2MD5(userManager.getCurrentUserObjectId());
File dir = new File(BmobConfig.BMOB_VOICE_DIR + File.separator + accountDir + File.separator + msg.getBelongId());
if (!dir.exists()) {
dir.mkdirs();
}
// 在当前用户的目录下面存放录音文件
File audioFile = new File(dir.getAbsolutePath() + File.separator + msg.getMsgTime() + ".amr");
try {
if (!audioFile.exists()) {
audioFile.createNewFile();
}
} catch (IOException e) {
}
return audioFile.getAbsolutePath();
}