How to upload .pdf .doc .txt files to server(mysql database) using Android

前端 未结 2 967
花落未央
花落未央 2021-01-29 15:01

I\'m facing some difficulties while uploading files to server, I need to know full code of file uploading with namevaluepair. Hear is my android code, I\'m getting only my file

2条回答
  •  借酒劲吻你
    2021-01-29 15:44

    If you want simple and fast then i will suggest you ION Library

    Post multipart/form-data and read JSON with an upload progress bar With ION :

    Ion.with(getContext())
    .load("https://koush.clockworkmod.com/test/echo")
    .uploadProgressBar(uploadProgressBar)
    .setMultipartParameter("goop", "noop")
    .setMultipartFile("archive", "application/zip", new File("/sdcard/filename.zip"))
    .asJsonObject()
    .setCallback(...)
    

提交回复
热议问题