我需要将联系人图片上传到服务器但无法获得真实路径。请有人帮助我。
我低于uri。
URI:content://com.android.contacts/display_photo/2,
答案 0 :(得分:2)
首先从Contact.Write文件中的Inpustream获取InputStream并保存为图像文件。最后在成功后将该图像路径上传到服务器只需删除该图像文件。见下面的代码。
首先,我使用Contact Id从Contact获取InputStream。
getContactInputStream("58");//58 is my contact id.
public void getContactInputStream(String contactId)
{
Uri uri = ContentUris.withAppendedId(ContactsContract.Contacts.CONTENT_URI, Long.parseLong(contactId));
InputStream stream = ContactsContract.Contacts.openContactPhotoInputStream(getContentResolver(), uri);
saveContactImage(stream);
}
将InputStream写入内部存储中的文件后。
public void saveContactImage(InputStream inputStream) {
try {
File file = new File(Environment.getExternalStorageDirectory().getPath(), "contactImage.png");
OutputStream output = new FileOutputStream(file);
try {
try {
byte[] buffer = new byte[4 * 1024]; // or other buffer size
int read;
while ((read = inputStream.read(buffer)) != -1) {
output.write(buffer, 0, read);
}
output.flush();
} finally {
output.close();
}
} catch (Exception e) {
e.printStackTrace(); // handle exception, define IOException and others
}
Log.d(TAG," Contact Image Path ===>"+file.getAbsolutePath());
}
catch (Exception e)
{
e.printStackTrace();
}
}
成功写入文件后,使用该文件网址上传。
file.getAbsolutePath()// Output : /storage/emulated/0/contactImage.png
以上任务需要以下权限:
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
另一种不在内部存储中保存Image文件的方法,您可以使用Retrofit中的TypeFile类将inputStream作为FileInputStream上传。有关详细信息,请参阅链接TypeFile in Retrofit for upload file as InputStream