我正在尝试将编码的图像字符串发布到改造后的方法...调试后我在从图库中选择的图像的调试中得到了很长的字符串......提交后我可以在调试器中看到图像的长字符串编码.. ..在邮递员中,当我检查时我显示 profile_pic: " "
为空...
需要帮忙
如果我使用这样的端点,我不会崩溃:
@FormUrlEncoded
@POST("update")
fun useredit(
@Header("access_token") token: String,
@Field("first_name") first_name:String,
@Field("last_name") last_name:String,
@Field("email") email:String,
@Field("dob") dob:String,
@Field("phone_no") phone_no: String,
@Field("profile_pic") profile_pic:String
):Call<LoginResponse>
响应代码:
profile = findViewById<View>(R.id.profilepic) as ImageView
profile?.setOnClickListener(View.OnClickListener {
val intent = Intent()
intent.type = "image/*"
intent.action = Intent.ACTION_GET_CONTENT
startActivityForResult(intent, IMAGE)
})
editsubmit.setOnClickListener {
val first_name = firstname.text.toString().trim()
val last_name = lastname.text.toString().trim()
val email = emailregister.text.toString().trim()
val phone = phoneno.text.toString().trim()
val profile =convertToString()!!
val token: String =
SharedPrefManager.getInstance(
applicationContext
).user.access_token.toString()
RetrofitClient.instance.useredit(token,first_name,last_name,email,edittext1.text.toString(),phone,profile)
.enqueue(object : Callback<LoginResponse> {
override fun onFailure(call: Call<LoginResponse>, t: Throwable) {
Log.d("res", "" + t)
}
override fun onResponse(
call: Call<LoginResponse>,
response: Response<LoginResponse>
) {
var res = response
Log.d("response check ", "" + response.body()?.status.toString())
if (res.body()?.status==200) {
Toast.makeText(
applicationContext,
res.body()?.message,
Toast.LENGTH_LONG
).show()
Log.d("kjsfgxhufb",response.body()?.status.toString())
}
else
{
try {
val jObjError =
JSONObject(response.errorBody()!!.string())
Toast.makeText(
applicationContext,
jObjError.getString("message")+jObjError.getString("user_msg"),
Toast.LENGTH_LONG
).show()
} catch (e: Exception) {
Toast.makeText(applicationContext, e.message, Toast.LENGTH_LONG).show()
Log.e("errorrr",e.message)
}
}
}
})
}
}
private fun convertToString(): String? {
val byteArrayOutputStream = ByteArrayOutputStream()
bitmap?.compress(Bitmap.CompressFormat.JPEG, 100, byteArrayOutputStream)
val imgByte: ByteArray = byteArrayOutputStream.toByteArray()
return android.util.Base64.encodeToString(imgByte, android.util.Base64.NO_WRAP )
}
override fun onActivityResult(
requestCode: Int,
resultCode: Int,
data: Intent?
) {
super.onActivityResult(requestCode, resultCode, data)
if (requestCode == IMAGE && resultCode == Activity.RESULT_OK && data != null) {
val path: Uri? = data.data
try {
bitmap = MediaStore.Images.Media.getBitmap(contentResolver, path)
profile?.setImageBitmap(bitmap)
} catch (e: IOException) {
e.printStackTrace()
}
}
}
我在调试器上看到长字符串,但在邮递员上看不到
后来我尝试了这个-->
我的端点:
@Multipart
@POST("update")
fun useredit(
@Header("access_token") token: String,
@Part("first_name") first_name:String,
@Part("last_name") last_name:String,
@Part("email") email:String,
@Part("dob") dob:String,
@Part("phone_no") phone_no: String,
@Part ("profile_pic")profile_pic: MultipartBody.Part?
):Call<LoginResponse>
活动响应代码:-
profile?.setOnClickListener(View.OnClickListener {
val intent = Intent()
intent.type = "image/*"
intent.action = Intent.ACTION_GET_CONTENT
startActivityForResult(intent, IMAGE)
})
editsubmit.setOnClickListener {
val first_name = firstname.text.toString().trim()
val last_name = lastname.text.toString().trim()
val email = emailregister.text.toString().trim()
val phone = phoneno.text.toString().trim()
val profile =convertToString()!!
val token: String =
SharedPrefManager.getInstance(
applicationContext
).user.access_token.toString()
val requestFile: RequestBody =
RequestBody.create(MediaType.parse("image/jpeg"), profile)
val body: MultipartBody.Part =
MultipartBody.Part.createFormData("image", "image.jpg", requestFile)
RetrofitClient.instance.useredit(token,first_name,last_name,email,edittext1.text.toString(),phone,body)
.enqueue(object : Callback<LoginResponse> {
override fun onFailure(call: Call<LoginResponse>, t: Throwable) {
Log.d("res", "" + t)
}
override fun onResponse(
call: Call<LoginResponse>,
response: Response<LoginResponse>
) {
var res = response
Log.d("response check ", "" + response.body()?.status.toString())
if (res.body()?.status==200) {
Toast.makeText(
applicationContext,
res.body()?.message,
Toast.LENGTH_LONG
).show()
Log.d("kjsfgxhufb",response.body()?.status.toString())
}
else
{
try {
val jObjError =
JSONObject(response.errorBody()!!.string())
Toast.makeText(
applicationContext,
jObjError.getString("message")+jObjError.getString("user_msg"),
Toast.LENGTH_LONG
).show()
} catch (e: Exception) {
Toast.makeText(applicationContext, e.message, Toast.LENGTH_LONG).show()
Log.e("errorrr",e.message)
}
}
}
})
}
}
private fun convertToString(): String? {
val byteArrayOutputStream = ByteArrayOutputStream()
bitmap?.compress(Bitmap.CompressFormat.JPEG, 100, byteArrayOutputStream)
val imgByte: ByteArray = byteArrayOutputStream.toByteArray()
return android.util.Base64.encodeToString(imgByte, android.util.Base64.NO_WRAP )
}
override fun onActivityResult(
requestCode: Int,
resultCode: Int,
data: Intent?
) {
super.onActivityResult(requestCode, resultCode, data)
if (requestCode == IMAGE && resultCode == Activity.RESULT_OK && data != null) {
val path: Uri? = data.data
try {
bitmap = MediaStore.Images.Media.getBitmap(contentResolver, path)
profile?.setImageBitmap(bitmap)
} catch (e: IOException) {
e.printStackTrace()
}
}
}
}
好吧,我从上面的代码中崩溃了——> java.lang.IllegalArgumentException:使用 MultipartBody.Part 的 @Part 参数不能在注释中包含部件名称。(参数#7)