- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
您好,我正在开发一个需要以多部分文件形式将一些 jpeg 格式的图像发布到服务器的应用程序,我已经为此编写了下面给出的代码,但它给出了以下响应,
01-15 00:32:14.119: I/System.out(7598): file is upload {"status":"error","message":"Please, Specify valid Parameter for file"}
请有人帮助我。提前致谢 。这是我的 Activity 代码
public class SendPostActivity extends Activity implements OnClickListener {
private Context appContext;
private String messageType;
HashMap<String, String> fileList = new HashMap<String, String>();
public String finalImagePath = null;
// number of images to select
private static final int PICK_IMAGE = 1;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
overridePendingTransition(R.anim.slide_in_left, R.anim.slide_out_right);
setContentView(R.layout.activity_send_post);
overridePendingTransition(R.anim.slide_in_right, R.anim.slide_out_left);
appContext = this;
initComponent();
}
private void initComponent() {
((Button) findViewById(R.id.btnLeftNav)).setVisibility(View.VISIBLE);
((Button) findViewById(R.id.btnRightNav)).setVisibility(View.VISIBLE);
((Button) findViewById(R.id.btnRightNav))
.setBackgroundResource(R.drawable.send_btn);
((Button) findViewById(R.id.btnLeftNav)).setOnClickListener(this);
((Button) findViewById(R.id.btnRightNav)).setOnClickListener(this);
((ImageView) findViewById(R.id.imageviewCamera))
.setOnClickListener(this);
((ImageView) findViewById(R.id.imageviewGallery))
.setOnClickListener(this);
((TextView) findViewById(R.id.txtAudioSong)).setOnClickListener(this);
((TextView) findViewById(R.id.txtVedioSong)).setOnClickListener(this);
Typeface face = Typeface.createFromAsset(getAssets(),
"fonts/GeosansLight.ttf");
((TextView) findViewById(R.id.txtHeading)).setTypeface(face);
((EditText) findViewById(R.id.edtMessage)).setTypeface(face);
((TextView) findViewById(R.id.txtHeading)).setText("Send Post");
}
@Override
public void finish() {
super.finish();
overridePendingTransition(R.anim.slide_in_left, R.anim.slide_out_right);
}
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
if (v.getId() == R.id.btnLeftNav) {
this.finish();
} else if (v.getId() == R.id.btnRightNav) {
String strPostMessage = ((EditText) findViewById(R.id.edtMessage))
.getEditableText().toString().trim();
if (strPostMessage.length() == 0) {
Toast.makeText(appContext, "Type message.", Toast.LENGTH_LONG)
.show();
} else {
messageType = "text";
}
}
// on this button click i want to post images to server
else if (v.getId() == R.id.imageviewCamera) {
Intent cameraIntent = new Intent(
android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(cameraIntent, 1);
} else if (v.getId() == R.id.imageviewGallery) {
/*
* Intent intent = new Intent(Intent.ACTION_GET_CONTENT, null);
* intent.setType("image/*"); startActivityForResult(intent, 2);
*/
selectImageFromGallery();
} else if (v.getId() == R.id.txtAudioSong) {
Intent intent = new Intent(Intent.ACTION_GET_CONTENT, null);
intent.setType("audio/*");
startActivityForResult(intent, 3);
} else if (v.getId() == R.id.txtVedioSong) {
Intent intent = new Intent(Intent.ACTION_GET_CONTENT, null);
intent.setType("video/*");
startActivityForResult(intent, 4);
}
}
public String getRealPathFromURI(Context context, Uri contentUri) {
Cursor cursor = null;
try {
String[] proj = { MediaStore.Images.Media.DATA };
cursor = context.getContentResolver().query(contentUri, proj, null,
null, null);
int column_index = cursor
.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
cursor.moveToFirst();
return cursor.getString(column_index);
} finally {
if (cursor != null) {
cursor.close();
}
}
}
public void selectImageFromGallery() {
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Select Picture"),
PICK_IMAGE);
}
public void decodeFile(String filePath) {
// Decode image size
BitmapFactory.Options o = new BitmapFactory.Options();
o.inJustDecodeBounds = true;
BitmapFactory.decodeFile(filePath, o);
// The new size we want to scale to
final int REQUIRED_SIZE = 1024;
// Find the correct scale value. It should be the power of 2.
int width_tmp = o.outWidth, height_tmp = o.outHeight;
int scale = 1;
while (true) {
if (width_tmp < REQUIRED_SIZE && height_tmp < REQUIRED_SIZE)
break;
width_tmp /= 2;
height_tmp /= 2;
scale *= 2;
}
// Decode with inSampleSize
BitmapFactory.Options o2 = new BitmapFactory.Options();
o2.inSampleSize = scale;
bitmap = BitmapFactory.decodeFile(filePath, o2);
if (bitmap != null) {
new ImageUploadTask().execute();
}
}
private Bitmap bitmap;
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == PICK_IMAGE && resultCode == RESULT_OK
&& null != data) {
Uri selectedImage = data.getData();
String[] filePathColumn = { MediaStore.Images.Media.DATA };
Cursor cursor = getContentResolver().query(selectedImage,
filePathColumn, null, null, null);
cursor.moveToFirst();
int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
String picturePath = cursor.getString(columnIndex);
cursor.close();
decodeFile(picturePath);
}
}
class ImageUploadTask extends AsyncTask<Void, Void, String> {
// private String webAddressToPost = "http://your-website-here.com";
// private ProgressDialog dialog;
private ProgressDialog dialog = new ProgressDialog(
SendPostActivity.this);
@Override
protected void onPreExecute() {
dialog.setMessage("Uploading...");
dialog.show();
}
@Override
protected String doInBackground(Void... params) {
try {
HttpClient httpClient = new DefaultHttpClient();
HttpContext localContext = new BasicHttpContext();
HttpPost httpPost = new HttpPost(Constant.serverUrl
+ "PostComment");
MultipartEntity entity = new MultipartEntity(
HttpMultipartMode.BROWSER_COMPATIBLE);
ByteArrayOutputStream bos = new ByteArrayOutputStream();
bitmap.compress(CompressFormat.JPEG, 100, bos);
byte[] data = bos.toByteArray();
String file = Base64.encodeToString(data, Base64.DEFAULT);
entity.addPart("file", new StringBody(file));
entity.addPart(
"user_id",
new StringBody(Utility.getSharedPreferences(appContext,
Constant.USER_ID)));
entity.addPart(
"msg_id",
new StringBody(Utility.getSharedPreferences(appContext,
Constant.MESSAGE_ID)));
entity.addPart("type", new StringBody("image"));
httpPost.setEntity(entity);
HttpResponse response = httpClient.execute(httpPost,
localContext);
BufferedReader reader = new BufferedReader(
new InputStreamReader(
response.getEntity().getContent(), "UTF-8"));
String sResponse = reader.readLine();
if (response != null) {
finalImagePath = sResponse;
}
return sResponse;
} catch (Exception e) {
// something went wrong. connection with the server error
e.printStackTrace();
}
return null;
}
@Override
protected void onPostExecute(String result) {
dialog.dismiss();
Toast.makeText(getApplicationContext(), "file uploaded",
Toast.LENGTH_LONG).show();
System.out
.println("file is uploaded ////////////" + finalImagePath);
}
} // asyntask class ends
} // final class ends
这是我的服务器 api 方法:
function PostComment()
{
$obj = new funcs_code();
$obj->connection();
$output = "";
$uid = mysql_real_escape_string($_REQUEST['user_id']);
$mid = mysql_real_escape_string($_REQUEST['msg_id']);
$comm = "";
$type = "text";
if(isset($_REQUEST['type']))
{
$type = mysql_real_escape_string($_REQUEST['type']);
}
if(isset($_REQUEST['comment']))
{
$comm = mysql_real_escape_string($_REQUEST['comment']);
}
$sql = "SELECT * FROM `users` WHERE user_id = '$uid'";
$res = mysql_query($sql);
if(mysql_num_rows($res)==1)
{
$row = mysql_fetch_assoc($res);
$sql1 = "SELECT * FROM `messages` WHERE msg_id = '$mid'";
$res1 = mysql_query($sql1);
if(mysql_num_rows($res1)==1)
{
$row1 = mysql_fetch_assoc($res1);
if($row['group_id'] == $row1['groupId'])
{
$status = 1; // 1 for comment
$fileName = "";
if(isset($_FILES['file']) && is_array($_FILES['file']))
{
$allowedExts = array("jpeg", "jpg", "mp3", "mp4", "3gp");
$temp = explode(".", $_FILES["file"]["name"]);
$extension = end($temp);
//
//Check File Extension & Size UPTO 5 MB
//
if (( $_FILES["file"]["type"] == "image/jpg" || $_FILES["file"]["type"] == "image/jpeg" || $_FILES["file"]["type"] == "audio/mpeg"
|| $_FILES["file"]["type"] == "video/3gpp" || $_FILES["fiile"]["type"] == "video/mp4" ) && $_FILES["file"]["size"] < 5242880 && in_array($extension, $allowedExts))
{
if ($_FILES["file"]["error"] > 0)
{
//echo "Return Code: " . $_FILES["file"]["error"] . "<br>";
$output = array('status' => 'error','message' => $_FILES["file"]["error"]);
header('content-type: application/json');
echo json_encode($output);
exit;
}
else
{
$fileName = time().".$extension";
move_uploaded_file($_FILES["file"]["tmp_name"], "uploads/". $fileName);
$fileName = '/uploads/'.$fileName;
}
}
else
{
$output = array('status' => 'error','message' => "Invalid_File");
header('content-type: application/json');
echo json_encode($output);
exit;
}
if($fileName != '' && $type != 'text')
{
$comm = $fileName;
}
}
//
//Below Condition Used to check, If uploading any media and File not Uploaded
//
if($type != 'text' && $fileName == ""){
$output = array('status' => 'error','message' => "Please, Specify valid Parameter for file");
header('content-type: application/json');
echo json_encode($output);
exit;
}
//
//In Any Case Comment can not be left blank
//
if($comm != "")
{
$sq = "INSERT INTO `user_comment`(`user_id`,`msg_id`,`type`,`comment`,`status`) VALUES('$uid','$mid','$type','$comm','$status')";
if(mysql_query($sq))
$output = array('status' => 'success','message' => "Comment_Success");
else
$output = array('status' => 'error','message' => "Comment_Fail");
}else{
$output = array('status' => 'error','message' => "Comment Can not be blank");
header('content-type: application/json');
echo json_encode($output);
exit;
}
///////////////////////////
}// group
else
{
//$output = 'user_group not match';
$output = array('status' => 'error','message' => "User_group_Not_match");
}
}
else
{
//$output = 'invalid msg_id';
$output = array('status' => 'error','message' => "Invalid_Msg_id");
}
}
else
{
//$output = "invalid user_id";
$output = array('status' => 'error','message' => "Invalid_User");
}
header('content-type: application/json');
echo json_encode($output);
}
最佳答案
类型错误,这一行应该是image/jpeg
:
entity.addPart("type", new StringBody("image"));
此外,您要将 File
作为 Base 64 编码字符串发送吗?您确定 php 代码可以处理吗?通常你应该直接对文件使用 FileBody
,但你可以对字节数组使用 ContentBody
。
这就是我使用 ByteArrayOutputStream
上传文件的方式
ByteArrayOutputStream bos = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, bos);
ContentBody contentPart = new ByteArrayBody(bos.toByteArray(), "image/jpeg", "file.jpg");
mpEntity.addPart("file", contentPart);
这就是你如何使用 FileBody
File f = ....
mpEntity.addPart("file", new FileBody(f));
关于android - 在android中的服务器上以多部分文件的形式上传jpeg格式的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21122120/
有没有办法使用 Clojure format(基于 java.util.Formatter)或 cl-format(基于 Common Lisp 的format) 以编程方式设置空格填充?如果您事先知
我正在尝试创建一个用户实体以及数据/文件(pdf格式)。上传并保存到数据库很好,但是当我让用户进入 postman 时尝试发送获取请求方法,然后在数据字段中显示一些糟糕的数据,而且我无法在数据库中看到
我必须将值为 {"STX","ETX"} 的普通字符串数组转换为十六进制值,并且我应该根据 http://www.asciitable.com/ 得到 {2,3} . 最佳答案 听起来你想要一个 Ma
我想格式化我的代码,但不确定哪种格式类型最适合我的项目需要。 我发现仅对于 dart 和 flutter 项目(我都有),有不止一个选项可用于格式化编程语言/框架中预先构建的代码。 Dart : da
我已经尝试了多个代码,例如这样 Sub DateFixer() Application.ScreenUpdating = False Application.Calculation =
SolrQuery query = new SolrQuery(); query.setQuery("*:*"); query.add("wt","csv"); server.query(query)
我有一个包含多个字符串的数据库,我从查询中获取了这些记录,并且我在 QString 中收到了这种格式的数据: "Mon, 13 Nov 2017 09:48:45 +0000" 所以,我需要根据文化来
我有一个 Delphi 2007 DBGrid,我想让用户以更新的 Excel 格式 (OOXML) 保存它,但我的标准是用户不需要安装 Excel。有没有人知道任何已经这样做的组件?是的,我已经搜索
我正在我们的普通 html 站点旁边创建一个移动站点。使用 rails 3.1。移动站点在子域 m.site.com 中访问。 我已经定义了移动格式(Mime::Type.register_alias
我正在尝试使用 xmlstarlet 格式化 xml 文件,但我不想创建新的 xml 文件。 我试过了 xmlstarlet fo --inplace --indent-tab --omit-decl
我在 A 列中有一个带有文本的电子表格。 例如 A1=MY TEXT1 A2=MY TEXT2 A3=MY TEXT3 A4=MY TEXT4 A5=MY TEXT5 我想在文本的前后添加撇号 结果是
我想做一些源代码转换(自动导入列表清理),我想保留注释和格式。我听说过一些关于解析器这样做的事情,我认为是 ghc 解析器。 看起来我可以通过从文件中提取内容来使用 hs-src-exts Langu
我在 Excel 中工作,我想根据另一张表中的列表找出一张表中是否有匹配项。 我已将值粘贴到列表中,并希望从另一张表中返回它们的相应值。包含字母和数字的单元格可以正常工作(例如:D5765000),但
我有一个 DurationField在我的模型中定义为 day0 = models.DurationField('Duration for Monday', default=datetime.time
我正在为我的应用程序开发 WMI 查询。它需要为给定的 VID/PID 找到分配的虚拟 COM 端口。使用 WMI Code Creator 我发现...... 命名空间:root\CIMV2 类:W
我试图弄清楚如何使用 NSTextList,但除了 this SO question 之外,在网上几乎没有找到有用的信息。和 the comment in this blog . 使用这个我已经能够创
我要查询all_objects表在哪里last_ddl_time='01 jan 2010'但它拒绝日期格式... 任何机构给我查询的确切格式? 最佳答案 正如 AKF 所说,您应该使用 Trunc除
我试图在我的应用程序中实现聊天功能。我使用了 2 个 JEditorPane。一个用于保存聊天记录,另一个用于将聊天发送到前一个 JEditorPane。 JEditorPane 是 text/h
我在大学里修了一个编译器类(class),内容非常丰富,很有趣,尽管也很多工作。既然给了我们要实现的语言规范,所以我学不到的一件事就是语言设计。我现在正在考虑创建一种有趣的简单玩具语言,以便我可以玩耍
Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。 想改善这个问题吗?更新问题,以便将其作为on-topic
我是一名优秀的程序员,十分优秀!