本文整理汇总了Java中cn.bmob.im.config.BmobConfig.BMOB_VOICE_DIR属性的典型用法代码示例。如果您正苦于以下问题:Java BmobConfig.BMOB_VOICE_DIR属性的具体用法?Java BmobConfig.BMOB_VOICE_DIR怎么用?Java BmobConfig.BMOB_VOICE_DIR使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类cn.bmob.im.config.BmobConfig
的用法示例。
在下文中一共展示了BmobConfig.BMOB_VOICE_DIR属性的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getDownLoadFilePath
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
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
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
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
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();
}