注册

Android如何发送文件?有没有具体案例可以参考一下? 求大神们指点

已邀请:

lizg - ……

您好,Demo中有实现发送文件的功能,在EaseChatFragment类,可以参考。

protected void sendFileMessage(String filePath) { EMMessage message = EMMessage.createFileSendMessage(filePath, toChatUsername); sendMessage(message); }

String filePath = EaseCompat.getPath(getActivity(), uri); EMLog.i(TAG, "sendFileByUri: " + filePath); if (filePath == null) { return; } File file = new File(filePath); if (!file.exists()) { Toast.makeText(getActivity(), R.string.File_does_not_exist, Toast.LENGTH_SHORT).show(); return; } sendFileMessage(filePath);
 

要回复问题请先登录注册