我正在尝试创建新的 MyImage ,如如何使用 google app engine 上传和存储图像中所列。
现在我没有使用任何表格。我有从 Gallery 获取 Uri 的 Android 应用程序:
m_galleryIntent = new Intent();
m_galleryIntent.setType("image/*");
m_galleryIntent.setAction(Intent.ACTION_GET_CONTENT);
m_profileButton.setOnClickListener(new OnClickListener()
{
public void onClick(View v)
{
startActivityForResult(Intent.createChooser(m_galleryIntent, "Select Picture"),1);
}
});
我正在使用 Uri 创建位图。
如何从位图在我的客户端中创建 Blob?
我必须将哪些 jars 添加到我的 android 项目中?
这是使用 Blob 的正确方法吗?
我的主要目标是在 GAE 数据存储中保存从 android 上传的图像,是正确使用此工具还是更好的方法?那就是。